context
stringlengths
27
489
answer
stringlengths
18
557
question_th
stringlengths
8
226
question_en
stringlengths
12
244
CREATE TABLE table_name_18 (laps VARCHAR, grid VARCHAR, driver VARCHAR)
SELECT laps FROM table_name_18 WHERE grid < 11 AND driver = "john love"
John Love มีกี่รอบในตารางน้อยกว่า 11?
How many laps did John Love have on a grid less than 11?
CREATE TABLE table_name_6 (builder VARCHAR, locomotive VARCHAR)
SELECT builder FROM table_name_6 WHERE locomotive = "2"
ผู้สร้างหัวรถจักร 2 คืออะไร?
What is the Builder of Locomotive 2?
CREATE TABLE table_name_43 (withdrawn INTEGER, type VARCHAR)
SELECT SUM(withdrawn) FROM table_name_43 WHERE type = "4-6-4t"
ด้วยประเภท 4-6-4t ผลรวมที่ถอนออกคือเท่าไร?
With a Type of 4-6-4t, what is the sum Withdrawn?
CREATE TABLE table_name_41 (score VARCHAR, home VARCHAR, visitor VARCHAR)
SELECT score FROM table_name_41 WHERE home = "dallas" AND visitor = "edmonton"
คะแนนจากเกมที่ดัลลาสเล่นในบ้านและเอดมันตันมาเยือนเป็นเท่าใด
What was the score from the game where Dallas played Home and Edmonton was visiting?
CREATE TABLE table_name_15 (mintage VARCHAR, theme VARCHAR)
SELECT mintage FROM table_name_15 WHERE theme = "santa claus"
เหรียญกษาปณ์คืออะไรเมื่อธีมคือซานตาคลอส?
What was the mintage when the theme was Santa Claus?
CREATE TABLE table_name_29 (issue_price INTEGER, year VARCHAR)
SELECT SUM(issue_price) FROM table_name_29 WHERE year = 2008
ราคาที่ออกในปี 2551 คืออะไร?
What was the issue price in the year 2008?
CREATE TABLE table_name_66 (year INTEGER, composition VARCHAR, issue_price VARCHAR)
SELECT MIN(year) FROM table_name_66 WHERE composition = "99.99% silver" AND issue_price = "$94.95"
ปีแรกสุดที่ส่วนประกอบเป็นเงิน 99.99% และราคาออกอยู่ที่ 94.95 ดอลลาร์คือปีใด
What is the earliest year when the composition is 99.99% silver and the issue price is $94.95?
CREATE TABLE table_name_87 (year INTEGER, issue_price VARCHAR, theme VARCHAR)
SELECT AVG(year) FROM table_name_87 WHERE issue_price = "$94.95" AND theme = "amethyst crystal"
ปีใดมีราคาจำหน่ายอยู่ที่ 94.95 เหรียญสหรัฐ และมีธีมเป็นคริสตัลอเมทิสต์?
What year had an issue price of $94.95 and theme of Amethyst crystal?
CREATE TABLE table_name_43 (score VARCHAR, opponent_in_the_final VARCHAR)
SELECT score FROM table_name_43 WHERE opponent_in_the_final = "shiho hisamatsu"
ตั้งชื่อคะแนนเมื่อคู่ต่อสู้ในรอบชิงชนะเลิศคือชิโฮะ ฮิซามัตสึ
Name the score for when the opponent in the final is shiho hisamatsu
CREATE TABLE table_name_79 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_79 WHERE date = "april 3, 2005"
ตั้งชื่อการแข่งขันสำหรับวันที่ 3 เมษายน พ.ศ. 2548
Name the tournament for april 3, 2005
CREATE TABLE table_name_1 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_1 WHERE date = "may 11, 2003"
ตั้งชื่อคะแนนสำหรับวันที่ 11 พฤษภาคม พ.ศ. 2546
Name th score for may 11, 2003
CREATE TABLE table_name_30 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_30 WHERE driver = "pedro diniz"
ใครเป็นคนสร้างรถของเปโดร ดินิซ?
Who constructed pedro diniz's car?
CREATE TABLE table_name_85 (grid VARCHAR, driver VARCHAR, laps VARCHAR)
SELECT COUNT(grid) FROM table_name_85 WHERE driver = "david coulthard" AND laps > 45
ตารางรวมของ David Coulthard ที่วิ่งเกิน 45 รอบเป็นเท่าใด
What is the grid total for david coulthard with over 45 laps?
CREATE TABLE table_name_33 (average INTEGER, start_value VARCHAR, total VARCHAR)
SELECT AVG(average) FROM table_name_33 WHERE start_value = 9.9 AND total = 9.612
ค่าเฉลี่ยของนักกายกรรมที่มีค่าเริ่มต้น 9.9 และคะแนนรวม 9.612 คือเท่าใด
What is the average for the gymnast with a 9.9 start value and a total of 9.612?
CREATE TABLE table_name_13 (penalty VARCHAR, average VARCHAR, total VARCHAR)
SELECT penalty FROM table_name_13 WHERE average > 9.662 AND total > 9.706
บทลงโทษสำหรับนักกายกรรมที่มีค่าเฉลี่ยสูงกว่า 9.662 และรวมมากกว่า 9.706 เป็นเท่าใด
What was the penalty for the gymnast with average above 9.662 and total is more than 9.706?
CREATE TABLE table_name_20 (category VARCHAR, year VARCHAR, for_the_show VARCHAR)
SELECT category FROM table_name_20 WHERE year > 2005 AND for_the_show = "kasautii zindagii kay"
Kasautii Zindagii Kay ได้รับการเสนอชื่อเข้าชิงประเภทใดหลังปี 2005
What category was Kasautii Zindagii Kay nominated for after 2005?
CREATE TABLE table_name_22 (for_the_show VARCHAR, category VARCHAR, year VARCHAR)
SELECT for_the_show FROM table_name_22 WHERE category = "best actor in a lead role – female (popular)" AND year = 2006
รายการใดที่ได้รับการเสนอชื่อเข้าชิงนักแสดงนำชายยอดเยี่ยม (ยอดนิยม) ในปี 2549?
What show had a nomination for best actor in a lead role – female (popular) in 2006?
CREATE TABLE table_name_91 (week INTEGER, result VARCHAR)
SELECT AVG(week) FROM table_name_91 WHERE result = "l 15-13"
ผล L 15-13 เกิดขึ้นในสัปดาห์ใด
In what week was the Result L 15-13?
CREATE TABLE table_name_51 (attendance INTEGER, opponent VARCHAR, week VARCHAR)
SELECT SUM(attendance) FROM table_name_51 WHERE opponent = "dallas cowboys" AND week > 5
การเข้าร่วมของฝ่ายตรงข้าม Dallas Cowboys ในหนึ่งสัปดาห์ที่มากกว่า 5 เป็นเท่าใด?
What is the Attendance with Opponent Dallas Cowboys in a Week greater than 5?
CREATE TABLE table_name_89 (points VARCHAR, engine VARCHAR, year VARCHAR)
SELECT COUNT(points) FROM table_name_89 WHERE engine = "maserati v12" AND year = 1968
เครื่องยนต์ maserati v12 ในปี 1968 ได้กี่คะแนน?
How many points for maserati v12 engines in 1968?
CREATE TABLE table_name_28 (entrant VARCHAR, year VARCHAR, points VARCHAR)
SELECT entrant FROM table_name_28 WHERE year < 1963 AND points < 3
ผู้เข้าร่วมคนใดมีคะแนนน้อยกว่า 3 คะแนนก่อนปี 1963
What entrant had less than 3 points before 1963?
CREATE TABLE table_name_86 (pole_position VARCHAR, grand_prix VARCHAR)
SELECT pole_position FROM table_name_86 WHERE grand_prix = "french grand prix"
ใครได้โพลในการแข่งขัน French Grand Prix?
Who had the pole at the French Grand Prix?
CREATE TABLE table_name_97 (constructor VARCHAR, grand_prix VARCHAR)
SELECT constructor FROM table_name_97 WHERE grand_prix = "canadian grand prix"
ใครเป็นคนสร้างรถที่ชนะการแข่งขัน Canadian Grand Prix?
Who constructed the car that won the Canadian Grand Prix?
CREATE TABLE table_name_18 (fastest_lap VARCHAR, winning_driver VARCHAR)
SELECT fastest_lap FROM table_name_18 WHERE winning_driver = "michael schumacher"
เมื่อ Michael Schumacher ชนะการแข่งขัน ใครมีรอบเร็วที่สุด?
When Michael Schumacher won the race, who had the fastest lap?
CREATE TABLE table_name_72 (school VARCHAR, college VARCHAR, height VARCHAR)
SELECT school FROM table_name_72 WHERE college = "kentucky" AND height = "6-7"
สำหรับผู้เล่นที่เล่นให้กับวิทยาลัยเคนตักกี้และมีส่วนสูง 6-7 ปี โรงเรียนของพวกเขาคือโรงเรียนใด
For the Player playing for the College of Kentucky and a Height of 6-7 what was their corresponding School?
CREATE TABLE table_name_40 (school VARCHAR, player VARCHAR)
SELECT school FROM table_name_40 WHERE player = "terrence jones"
Terrence Jones เล่นให้กับโรงเรียนอะไร
What School did Terrence Jones play for?
CREATE TABLE table_name_42 (player VARCHAR, height VARCHAR)
SELECT player FROM table_name_42 WHERE height = "6-3"
ผู้เล่นคนไหนที่มีส่วนสูง 6-3?
What Player(s) have a Height of 6-3?
CREATE TABLE table_name_41 (nba_draft VARCHAR, height VARCHAR, college VARCHAR)
SELECT nba_draft FROM table_name_41 WHERE height = "6-9" AND college = "kentucky"
สำหรับผู้เล่นที่มีส่วนสูง 6-9 และวิทยาลัยเคนตักกี้ NBA Draft ของพวกเขาคืออะไร
For the player with a Height of 6-9 and College of Kentucky what was their NBA Draft?
CREATE TABLE table_name_84 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_84 WHERE date = "february 9"
คะแนนวันที่ 9 กุมภาพันธ์เป็นอย่างไรบ้าง?
What was the score on February 9?
CREATE TABLE table_name_73 (points INTEGER, team VARCHAR, year VARCHAR)
SELECT AVG(points) FROM table_name_73 WHERE team = "arrows racing team" AND year < 1983
คะแนนรวมเฉลี่ยของทีม Arrows Racing ก่อนปี 1983 เป็นเท่าใด
What is the average point total for arrows racing team before 1983?
CREATE TABLE table_name_61 (team VARCHAR, year VARCHAR, chassis VARCHAR)
SELECT team FROM table_name_61 WHERE year > 1990 AND chassis = "jordan 193"
ทีมใดมีแชสซี jordan 193 หลังปี 1990?
What team has jordan 193 chassis after 1990?
CREATE TABLE table_name_23 (points VARCHAR, year VARCHAR, engine VARCHAR)
SELECT points FROM table_name_23 WHERE year > 1985 AND engine = "cosworth v8"
เครื่องยนต์ cosworth v8 หลังปี 1985 ได้กี่คะแนน?
How many points for the cosworth v8 engine after 1985?
CREATE TABLE table_name_6 (constructor VARCHAR, grid INTEGER)
SELECT constructor FROM table_name_6 WHERE grid < 2
ตัวสร้างสำหรับไดรเวอร์ที่มีกริดน้อยกว่า 2 คืออะไร?
What is the constructor for the driver with grid less than 2?
CREATE TABLE table_name_12 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_12 WHERE player = "aaron williams"
Aaron Williams เล่นตำแหน่งอะไร?
What Position did Aaron Williams play?
CREATE TABLE table_name_43 (years_for_jazz VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT years_for_jazz FROM table_name_43 WHERE position = "guard" AND school_club_team = "notre dame"
ตำแหน่งการ์ดจากทีมโรงเรียน/คลับนอเทรอดาม คนนั้นเล่นให้กับแจ๊สมากี่ปีแล้ว?
At Position of guard, from the School/Club Team Notre Dame, how many Years for Jazz did that person play?
CREATE TABLE table_name_34 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_34 WHERE player = "andre wakefield"
Andre Wakefield เล่นให้กับทีมโรงเรียน/สโมสรใด
Which School/Club Team did Andre Wakefield play for?
CREATE TABLE table_name_59 (nationality VARCHAR, position VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_name_59 WHERE position = "guard" AND school_club_team = "notre dame"
ผู้เล่นที่ได้รับตำแหน่งการ์ดจากทีมโรงเรียน/สโมสรนอเทรอดามมีสัญชาติอะไร?
What is the Nationality of the player who had Position of guard from School/Club Team Notre Dame?
CREATE TABLE table_name_83 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_83 WHERE player = "howard wood"
ผู้เล่น Howard Wood มาจากทีมโรงเรียน/สโมสรใด
What School/Club Team is Player Howard Wood from?
CREATE TABLE table_name_5 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_5 WHERE player = "aaron williams"
ผู้เล่น Aaron Williams มาจากทีมโรงเรียน/สโมสรใด
What School/Club Team is Player Aaron Williams from?
CREATE TABLE table_name_9 (street_address VARCHAR, floors VARCHAR)
SELECT street_address FROM table_name_9 WHERE floors = "5"
อาคาร 5 ชั้น ตั้งอยู่ที่ใด?
What is the street address of the building with 5 floors?
CREATE TABLE table_name_94 (street_address VARCHAR, floors VARCHAR)
SELECT street_address FROM table_name_94 WHERE floors = "40"
ที่อยู่ของอาคาร 40 ชั้น คืออะไร?
What is the street address of the building with 40 floors?
CREATE TABLE table_name_53 (years_as_tallest VARCHAR, floors VARCHAR)
SELECT years_as_tallest FROM table_name_53 WHERE floors = "44"
อาคาร 44 ชั้นสูงที่สุดกี่ปี?
What were the years the building with 44 floors was tallest?
CREATE TABLE table_name_20 (street_address VARCHAR, name VARCHAR)
SELECT street_address FROM table_name_20 WHERE name = "oliver building"
ที่อยู่ของ Oliver Building คืออะไร?
What is the street address of Oliver Building?
CREATE TABLE table_name_62 (winning_party_2003 VARCHAR, constituency VARCHAR)
SELECT winning_party_2003 FROM table_name_62 WHERE constituency = "aberdeen north"
คุณช่วยบอกฉันหน่อยได้ไหมว่าพรรคที่ชนะในปี 2546 ที่มีเขตเลือกตั้งของอเบอร์ดีนเหนือ?
Can you tell me the Winning party of 2003 that has the Constituency of aberdeen north?
CREATE TABLE table_name_64 (rank INTEGER, constituency VARCHAR)
SELECT MIN(rank) FROM table_name_64 WHERE constituency = "strathkelvin and bearsden"
คุณช่วยบอกฉันหน่อยได้ไหมว่าอันดับต่ำสุดที่มีการเลือกตั้งเป็น strathkelvin และ Bearsden คืออะไร?
Can you tell me the lowest Rank that has the Constituency of strathkelvin and bearsden?
CREATE TABLE table_name_48 (swing_to_gain INTEGER, constituency VARCHAR)
SELECT SUM(swing_to_gain) FROM table_name_48 WHERE constituency = "caithness, sutherland and easter ross"
คุณช่วยบอกฉันถึงผลรวมของ Swing ที่จะได้รับที่มีการเลือกตั้งแบบ caithness, sutherland และ easter ross ได้ไหม?
Can you tell me the sum of Swing to gain that has Constituency of caithness, sutherland and easter ross?
CREATE TABLE table_name_59 (time_retired VARCHAR, laps VARCHAR)
SELECT time_retired FROM table_name_59 WHERE laps = 75
เวลา / เกษียณของรอบ 75 คือเท่าไร?
What's the Time/Retired of Laps of 75?
CREATE TABLE table_name_99 (driver VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT driver FROM table_name_99 WHERE laps > 78 AND time_retired = "+ 1:09.4"
นักแข่งคนใดมีรอบมากกว่า 78 และเวลา/เกษียณที่ + 1:09.4
Which Driver has Laps larger than 78, and a Time/Retired of + 1:09.4?
CREATE TABLE table_name_72 (laps VARCHAR, grid VARCHAR)
SELECT COUNT(laps) FROM table_name_72 WHERE grid = 4
ตาราง 4 มีกี่รอบ?
Hows many Laps are in a Grid of 4?
CREATE TABLE table_name_42 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_42 WHERE away_team = "collingwood"
ทีมเยือนคอลลิงวูดเล่นที่สนามใด?
What venue did the away team Collingwood play at?
CREATE TABLE table_name_33 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_33 WHERE venue = "kardinia park"
ทีมเยือนเล่นที่คาร์ดิเนีย ปาร์ค สกอร์เท่าไหร่?
What is the score of the away team that played at Kardinia Park?
CREATE TABLE table_name_2 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_2 WHERE venue = "kardinia park"
ทีมเยือนที่เล่นที่คาร์ดิเนีย ปาร์ค ชื่ออะไร?
What is the name of the away team that played at Kardinia Park?
CREATE TABLE table_name_40 (attendance VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_40 WHERE week > 5 AND opponent = "bye"
การเข้าร่วมในสัปดาห์ลาก่อนหลังจากสัปดาห์ที่ 5 คืออะไร?
What is the attendance in the bye week after week 5?
CREATE TABLE table_name_1 (location VARCHAR, time VARCHAR)
SELECT location FROM table_name_1 WHERE time = "1:59:12"
สถานที่ใดมีเวลา 1:59:12 น.?
What location had 1:59:12 in time?
CREATE TABLE table_name_79 (away_team VARCHAR)
SELECT away_team AS score FROM table_name_79 WHERE away_team = "north melbourne"
ทีมเยือน นอร์ธ เมลเบิร์น สกอร์เท่าไหร่?
What is the score for the away team of north melbourne?
CREATE TABLE table_name_46 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_46 WHERE venue = "victoria park"
เจ้าบ้านทีมไหนเล่นที่วิคตอเรีย พาร์ค?
Which home team plays at victoria park?
CREATE TABLE table_name_38 (competition VARCHAR, event VARCHAR, year VARCHAR)
SELECT competition FROM table_name_38 WHERE event = "team all-round" AND year < 1913
การแข่งขันของทีมอีเวนท์รอบด้านในปีก่อน พ.ศ. 2456 คืออะไร?
what is the competition for the event team all-round in the year before 1913?
CREATE TABLE table_name_60 (event VARCHAR, year VARCHAR, position VARCHAR)
SELECT event FROM table_name_60 WHERE year < 1913 AND position = "2nd"
งานประจำปีน้อยกว่า พ.ศ. 2456 ครองตำแหน่งที่ 2 เป็นอย่างไร?
what is the event for the year less than 1913 with the position of 2nd?
CREATE TABLE table_name_8 (competition VARCHAR, event VARCHAR, venue VARCHAR, position VARCHAR)
SELECT competition FROM table_name_8 WHERE venue = "paris" AND position = "1st" AND event = "parallel bars"
การแข่งขันในปารีสสำหรับบาร์คู่ขนานที่มีตำแหน่งที่ 1 คืออะไร?
what is the competition in paris for the parallel bars with a position of 1st?
CREATE TABLE table_name_78 (competition VARCHAR, event VARCHAR, year VARCHAR, position VARCHAR)
SELECT competition FROM table_name_78 WHERE year > 1911 AND position = "1st" AND event = "rings"
การแข่งขันในหนึ่งปีหลังจากปี 1911 โดยตำแหน่งที่ 1 ของวงแหวนคืออะไร?
what is the competition in a year after 1911 with the position of 1st for the rings?
CREATE TABLE table_name_26 (year VARCHAR, position VARCHAR, venue VARCHAR)
SELECT year FROM table_name_26 WHERE position = "1st" AND venue = "paris"
อันดับ 1 ในปารีสปีไหนคะ?
what is the year that the position was 1st in paris?
CREATE TABLE table_name_16 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_16 WHERE venue = "mcg"
ทีมใดเล่นนัดเหย้าที่สนาม mcg?
Which team plays their home matches at the mcg Venue?
CREATE TABLE table_name_11 (host VARCHAR, original_airdate VARCHAR)
SELECT host FROM table_name_11 WHERE original_airdate = "june 11, 2007"
พิธีกรคนไหนมีกำหนดออกอากาศเดิมวันที่ 11 มิถุนายน 2550?
What host has an original air date of june 11, 2007?
CREATE TABLE table_name_96 (location VARCHAR, record VARCHAR)
SELECT location FROM table_name_96 WHERE record = "3-2"
ที่ตั้งของทีมที่มีสถิติ 3-2 อยู่ที่ไหน?
Where is the location of a team with a 3-2 record?
CREATE TABLE table_name_67 (res VARCHAR, record VARCHAR)
SELECT res FROM table_name_67 WHERE record = "4-2"
ผลงานทีมที่มีสถิติ 4-2 เป็นอย่างไร?
What is the result of the team with the 4-2 record?
CREATE TABLE table_name_30 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team AS score FROM table_name_30 WHERE home_team = "st kilda"
คะแนนทีมเยือนของเซนต์คิลดาเป็นเท่าไหร่?
What was St Kilda's away team score?
CREATE TABLE table_name_41 (crowd INTEGER, venue VARCHAR)
SELECT AVG(crowd) FROM table_name_41 WHERE venue = "moorabbin oval"
การเข้าร่วมที่ Moorabbin Oval เป็นอย่างไรบ้าง?
What was the attendance at Moorabbin Oval?
CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_48 WHERE home_team = "melbourne"
คู่ต่อสู้ทีมเยือนของเมลเบิร์นคือใคร?
Who was Melbourne's away team opponent?
CREATE TABLE table_name_19 (crowd VARCHAR, away_team VARCHAR)
SELECT crowd FROM table_name_19 WHERE away_team = "footscray"
การมีส่วนร่วมในเกมเยือนฟุตสเครย์เป็นอย่างไรบ้าง?
What was the attendance at the Footscray away game?
CREATE TABLE table_name_54 (competition VARCHAR, date VARCHAR)
SELECT competition FROM table_name_54 WHERE date = "14 june 2008"
เล่าการแข่งขันที่เกิดขึ้นวันที่ 14 มิถุนายน 2551 หน่อย
Tell me the competition that happened on 14 june 2008
CREATE TABLE table_name_43 (score VARCHAR, venue VARCHAR)
SELECT score FROM table_name_43 WHERE venue = "tanteen recreation ground, st. george's"
บอกคะแนนสถานที่จัดงานลานนันทนาการทันทีน ซ. ของจอร์จ
Tell me the score for Venue of tanteen recreation ground, st. george's
CREATE TABLE table_name_74 (_number_of_weeks VARCHAR, season VARCHAR)
SELECT COUNT(_number_of_weeks) FROM table_name_74 WHERE season = "3 – spring 2008"
ซีซั่น 3 - ฤดูใบไม้ผลิ 2008 เกี่ยวข้องกับกี่สัปดาห์?
How many weeks are associated with Season 3 – spring 2008?
CREATE TABLE table_name_89 (winner VARCHAR, _number_of_weeks VARCHAR, third_place VARCHAR)
SELECT winner FROM table_name_89 WHERE _number_of_weeks < 13 AND third_place = "robert kudelski"
ใครชนะเมื่อโรเบิร์ต คูเดลสกี้จบการแข่งขันด้วยเวลาต่ำกว่า 13 สัปดาห์?
Who won when robert kudelski finished with under 13 weeks?
CREATE TABLE table_name_68 (attendance INTEGER, opponent VARCHAR, score VARCHAR)
SELECT AVG(attendance) FROM table_name_68 WHERE opponent = "brewers" AND score = "6–3"
ผู้เข้าร่วมโดยเฉลี่ยเมื่อ Brewers เป็นคู่ต่อสู้ด้วยคะแนน 6–3 คือเท่าใด
What is the average attendance when Brewers are the opponent with a score of 6–3?
CREATE TABLE table_name_81 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_81 WHERE date = "june 10"
การสูญเสียอะไรเกิดขึ้นในวันที่ 10 มิถุนายน?
What loss occurred on June 10?
CREATE TABLE table_name_36 (opponent VARCHAR, score VARCHAR)
SELECT opponent FROM table_name_36 WHERE score = "5–4"
คู่ต่อสู้ที่มีคะแนน 5–4 คือใคร?
Who is the opponent with a score of 5–4?
CREATE TABLE table_name_70 (week VARCHAR, result VARCHAR)
SELECT week FROM table_name_70 WHERE result = "w 28-17"
สัปดาห์ที่ผลลัพธ์ของ w 28-17 คืออะไร?
What is the week for Result of w 28-17?
CREATE TABLE table_name_45 (attendance INTEGER, date VARCHAR)
SELECT AVG(attendance) FROM table_name_45 WHERE date = "october 26, 1947"
จำนวนผู้เข้าร่วมเฉลี่ยสำหรับวันที่ 26 ตุลาคม 2490 เป็นเท่าใด
What is the avarage Attendance for the Date of october 26, 1947?
CREATE TABLE table_name_70 (years VARCHAR, name VARCHAR)
SELECT years FROM table_name_70 WHERE name = "arapohue school"
ช่วยบอกชั้นปีที่มีชื่อโรงเรียนอาราโปฮิวหน่อยได้ไหม?
Can you tell me the Years that has the Name of arapohue school?
CREATE TABLE table_name_52 (decile INTEGER, area VARCHAR, roll VARCHAR)
SELECT MIN(decile) FROM table_name_52 WHERE area = "matakohe" AND roll > 86
คุณช่วยบอก Decile ต่ำสุดที่มีพื้นที่ Matakohe และม้วนที่ใหญ่กว่า 86 ได้ไหม
Can you tell me the lowest Decile that has the Area of matakohe, and the Roll larger than 86?
CREATE TABLE table_name_95 (roll VARCHAR, area VARCHAR)
SELECT COUNT(roll) FROM table_name_95 WHERE area = "aranga"
คุณช่วยบอกจำนวนม้วนทั้งหมดที่มีพื้นที่อารังกาได้ไหม
Can you tell me the total number of Roll that has the Area of aranga?
CREATE TABLE table_name_95 (name VARCHAR, roll INTEGER)
SELECT name FROM table_name_95 WHERE roll > 419
คุณช่วยบอกชื่อที่มีม้วนใหญ่กว่า 419 หน่อยได้ไหม?
Can you tell me the Name that has the Roll larger than 419?
CREATE TABLE table_name_17 (week VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_17 WHERE opponent = "at new orleans saints" AND attendance > 53 OFFSET 448
จำนวนสัปดาห์ทั้งหมดที่มีฝ่ายตรงข้ามของนักบุญนิวออร์ลีนส์และมีผู้เข้าร่วมมากกว่า 53,448 คน?
Which total number of Week has an Opponent of at new orleans saints, and an Attendance larger than 53,448?
CREATE TABLE table_name_70 (attendance VARCHAR, result VARCHAR)
SELECT attendance FROM table_name_70 WHERE result = "w 51-21"
การเข้าร่วมใดมีผลเป็น w 51-21?
Which Attendance has a Result of w 51-21?
CREATE TABLE table_name_98 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_98 WHERE venue = "arden street oval"
ทีมเยือนที่ Arden Street Oval คือใคร?
Who was the Away team at Arden Street Oval?
CREATE TABLE table_name_27 (top_25 INTEGER, wins INTEGER)
SELECT AVG(top_25) FROM table_name_27 WHERE wins > 0
ค่าเฉลี่ย 25 อันดับแรกสำหรับวิชาเอกที่ชนะมากกว่า 0 เป็นเท่าใด
What is the average top-25 value for majors that have more than 0 wins?
CREATE TABLE table_name_18 (cuts_made INTEGER, events VARCHAR, top_25 VARCHAR)
SELECT MAX(cuts_made) FROM table_name_18 WHERE events = 7 AND top_25 > 2
จำนวนการตัดตัวมากที่สุดที่มีการเล่นมากกว่า 7 รายการและมากกว่า 25 อันดับสูงสุดคือเท่าใด
What is the most number of cuts made that had more than 7 events played and more than 2 top-25s?
CREATE TABLE table_name_54 (cuts_made INTEGER, top_25 INTEGER)
SELECT AVG(cuts_made) FROM table_name_54 WHERE top_25 < 2
สำหรับค่า 25 อันดับแรกที่ต่ำกว่า 2 จำนวนการตัดโดยเฉลี่ยคือเท่าใด
For top-25 values under 2, what is the average number of cuts made?
CREATE TABLE table_name_26 (election VARCHAR, seats VARCHAR, dáil VARCHAR)
SELECT election FROM table_name_26 WHERE seats > 57 AND dáil = "24th"
ด้วยสกอร์ 24 กว่า 57 ที่นั่ง เลือกตั้งอะไร?
With a dail of 24th and more than 57 seats, what is the election?
CREATE TABLE table_name_61 (seats INTEGER, share_of_votes VARCHAR, total_seats VARCHAR)
SELECT MAX(seats) FROM table_name_61 WHERE share_of_votes = "45.3%" AND total_seats < 166
มีหุ้น 45.3% และจำนวนที่นั่งทั้งหมดไม่ถึง 166 ที่นั่ง จำนวนที่นั่งสูงสุดคือเท่าใด?
with shares of 45.3% and total seats less than 166. what is the greatest number of seat?
CREATE TABLE table_name_82 (total_seats INTEGER, seats VARCHAR, share_of_votes VARCHAR)
SELECT MAX(total_seats) FROM table_name_82 WHERE seats = 77 AND share_of_votes = "44.2%"
ด้วยส่วนแบ่ง 44.2% มี 77 ที่นั่ง รวมที่นั่งสูงสุดคือเท่าไร?
with a share of 44.2% and 77 seats, what is the greatest seat total?
CREATE TABLE table_name_60 (long VARCHAR, year VARCHAR)
SELECT long FROM table_name_60 WHERE year = "1994"
ยาวในปี 1994 คืออะไร?
What is the long in 1994?
CREATE TABLE table_name_6 (team VARCHAR, long VARCHAR)
SELECT team FROM table_name_6 WHERE long = "67"
ทีมไหนยาว67ครับ?
Which team has a long of 67?
CREATE TABLE table_name_27 (ravg VARCHAR, ratt VARCHAR)
SELECT ravg FROM table_name_27 WHERE ratt = "9"
RAvg ของปีที่มี Ratt เป็น 9 คืออะไร?
What is the RAvg of the year with Ratt of 9?
CREATE TABLE table_name_97 (ratt VARCHAR, long VARCHAR)
SELECT ratt FROM table_name_97 WHERE long = "78"
รัตแห่งปีที่มีความยาว 78 คืออะไร?
What is the Ratt of the year with a 78 long?
CREATE TABLE table_name_64 (team VARCHAR, ravg VARCHAR)
SELECT team FROM table_name_64 WHERE ravg = "1.3"
ทีมไหนมี Ravg อยู่ที่ 1.3?
Which team has a Ravg of 1.3?
CREATE TABLE table_name_55 (rate VARCHAR, year VARCHAR)
SELECT rate FROM table_name_55 WHERE year = "17 years"
อายุ 17 ปี อัตราเท่าไร?
What is the rate of 17 years?
CREATE TABLE table_name_97 (samurai VARCHAR, stampede VARCHAR)
SELECT samurai FROM table_name_97 WHERE stampede = "t. mask"
ตั้งชื่อซามูไรสำหรับการแตกตื่นของที หน้ากาก
Name the samurai for stampede of t. mask
CREATE TABLE table_name_3 (series VARCHAR, home VARCHAR, date VARCHAR)
SELECT series FROM table_name_3 WHERE home = "toronto" AND date = "may 18"
ซีรีส์ใดที่ถ่ายทำในโตรอนโตในวันที่ 18 พฤษภาคม
Which series is based in Toronto on may 18?
CREATE TABLE table_name_43 (attendance INTEGER, home VARCHAR, date VARCHAR)
SELECT SUM(attendance) FROM table_name_43 WHERE home = "vancouver" AND date = "may 22"
ฝูงชนที่แวนคูเวอร์รวมกันในวันที่ 22 พฤษภาคมคือเท่าใด
What is the combined crowd in Vancouver on may 22?