context
stringlengths
27
489
answer
stringlengths
18
557
question_th
stringlengths
8
226
question_en
stringlengths
12
244
CREATE TABLE table_25735_1 (competition VARCHAR, winner VARCHAR)
SELECT competition FROM table_25735_1 WHERE winner = "Toronto City Saints"
นักบุญเมืองโตรอนโตชนะการแข่งขันใด
Which competition did the toronto city saints win?
CREATE TABLE table_25735_1 (teams INTEGER, winner VARCHAR)
SELECT MIN(teams) FROM table_25735_1 WHERE winner = "Wynnum Manly Seagulls"
Wynnum Manly Seagulls ชนะการแข่งขันจำนวนทีมกี่ทีม?
What was the number of teams in the competition that wynnum manly seagulls won?
CREATE TABLE table_25735_1 (latest_year VARCHAR, competition VARCHAR)
SELECT COUNT(latest_year) FROM table_25735_1 WHERE competition = "Cook Island League"
มีการแข่งขันลีกเกาะคุกกี่รายการ?
How many cook island league competitions were there?
CREATE TABLE table_25740774_1 (position VARCHAR, season VARCHAR)
SELECT COUNT(position) FROM table_25740774_1 WHERE season = 2010
มีกี่ตำแหน่งที่แสดงสำหรับฤดูกาล 2010?
How many positions are shown for the 2010 season?
CREATE TABLE table_25740774_1 (season INTEGER, podiums INTEGER)
SELECT MAX(season) FROM table_25740774_1 WHERE podiums > 2.0
ฤดูกาลที่มีโพเดียมมากกว่า 2.0 คืออะไร?
What is the season with podiums more than 2.0?
CREATE TABLE table_25740774_1 (series VARCHAR, position VARCHAR)
SELECT series FROM table_25740774_1 WHERE position = "NC"
ซีรีย์ไหนอยู่ในตำแหน่ง nc?
Which series is in position nc?
CREATE TABLE table_25740774_1 (f_laps VARCHAR, races VARCHAR)
SELECT f_laps FROM table_25740774_1 WHERE races = 14
f/laps สำหรับการแข่ง 14 คืออะไร?
What are the f/laps for race 14?
CREATE TABLE table_25740774_1 (f_laps VARCHAR, team VARCHAR)
SELECT COUNT(f_laps) FROM table_25740774_1 WHERE team = "March 3 Racing (1-4) Top Speed Racing team (5-12)"
ทีมแข่ง 3 มีนาคม (1-4) ทีมแข่งความเร็วสูงสุด (5-12) มีกี่ใบ?
How many flaps are there for the team march 3 racing (1-4) top speed racing team (5-12)?
CREATE TABLE table_25773915_11 (int INTEGER, player VARCHAR)
SELECT MAX(int) FROM table_25773915_11 WHERE player = "Maake Kemoeatu"
ถ้าผู้เล่นเป็น มาเกอคีโมเอตู ค่า int สูงสุดคือเท่าไร?
If the player is Maake Kemoeatu, what is the int maximum?
CREATE TABLE table_25773915_11 (ydl INTEGER)
SELECT MIN(ydl) FROM table_25773915_11
ydi ขั้นต่ำคือเท่าไร?
What is the ydi minimum?
CREATE TABLE table_25773915_11 (fumrec INTEGER)
SELECT MIN(fumrec) FROM table_25773915_11
fumrec ขั้นต่ำคือเท่าไร?
What is the fumrec minimum?
CREATE TABLE table_25773915_11 (fumrec VARCHAR, player VARCHAR)
SELECT fumrec FROM table_25773915_11 WHERE player = "Reed Doughty"
ถ้าผู้เล่นคือ Reed Doughty แล้ว fumrec คืออะไร?
If the player is Reed Doughty, what isthe fumrec?
CREATE TABLE table_25794138_1 (stadium VARCHAR, team VARCHAR)
SELECT stadium FROM table_25794138_1 WHERE team = "San Juan Jabloteh"
ซาน ฮวน จาโบลเตห์ ลงเล่นในสนามกีฬาใด (ซาน ฮวน จาโบลเตห์ อยู่ในสนามใด?
What stadium(sO does san juan jabloteh play in?
CREATE TABLE table_25794138_1 (captain VARCHAR, team VARCHAR)
SELECT captain FROM table_25794138_1 WHERE team = "North East Stars"
ใครเป็นหัวหน้าของดาวตะวันออกเฉียงเหนือ?
Wh owas the captian of the north east stars?
CREATE TABLE table_25794138_1 (capacity INTEGER, stadium VARCHAR)
SELECT MAX(capacity) FROM table_25794138_1 WHERE stadium = "Larry Gomes stadium"
ความจุสูงสุดของสนามแลร์รี่ โกเมสคือเท่าไร?
What was the maximum capacity of larry gomes stadium?
CREATE TABLE table_25800134_11 (season__number INTEGER)
SELECT MIN(season__number) FROM table_25800134_11
ฤดูกาลต่ำสุด # คืออะไร?
What is the lowest season #?
CREATE TABLE table_25800134_11 (director VARCHAR, series__number VARCHAR)
SELECT director FROM table_25800134_11 WHERE series__number = 422
ใครเป็นผู้กำกับซีรีส์ # 422?
Who directed series # 422?
CREATE TABLE table_25800134_11 (director VARCHAR, series__number VARCHAR)
SELECT COUNT(director) FROM table_25800134_11 WHERE series__number = 431
มีผู้กำกับกี่คนสำหรับซีรี่ส์ # 431
How many directors were there for series # 431?
CREATE TABLE table_25800134_12 (series__number VARCHAR, airdate VARCHAR)
SELECT series__number FROM table_25800134_12 WHERE airdate = "February 26, 1968"
ซีรีส์นี้ออกอากาศวันที่ 26 กุมภาพันธ์ พ.ศ. 2511 ตอนที่ใด
What episode number of the series aired on February 26, 1968?
CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR)
SELECT COUNT(director) FROM table_25800134_12 WHERE airdate = "February 5, 1968"
ตอนที่ออกอากาศวันที่ 5 กุมภาพันธ์ พ.ศ. 2511 มีคนกำกับกี่คน?
How many people directed the episode that aired on February 5, 1968?
CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR)
SELECT director FROM table_25800134_12 WHERE airdate = "September 25, 1967"
ใครเป็นผู้กำกับตอนที่ออกอากาศเมื่อวันที่ 25 กันยายน พ.ศ. 2510?
Who directed the episode that aired on September 25, 1967?
CREATE TABLE table_25800134_12 (director VARCHAR, airdate VARCHAR)
SELECT director FROM table_25800134_12 WHERE airdate = "February 19, 1968"
ใครเป็นผู้กำกับตอนที่ออกอากาศเมื่อวันที่ 19 กุมภาพันธ์ พ.ศ. 2511?
Who directed the episode that aired on February 19, 1968?
CREATE TABLE table_25800134_12 (title VARCHAR, airdate VARCHAR)
SELECT COUNT(title) FROM table_25800134_12 WHERE airdate = "September 25, 1967"
มีกี่ตอนที่ออกอากาศเมื่อวันที่ 25 กันยายน พ.ศ. 2510
How many episode titles aired on September 25, 1967?
CREATE TABLE table_25800134_18 (series__number INTEGER, season__number VARCHAR)
SELECT MAX(series__number) FROM table_25800134_18 WHERE season__number = 22
ตั้งชื่อหมายเลขซีรีส์มากที่สุดสำหรับซีซั่น 22
name the most series number for season 22
CREATE TABLE table_25802689_14 (stage INTEGER, mountains_classification VARCHAR)
SELECT MIN(stage) FROM table_25802689_14 WHERE mountains_classification = "Peter Stetina"
ช่วงแรกสุดที่ Peter Stetina มอบการจำแนกประเภทภูเขาคืออะไร?
What is the earliest stage where mountains classifications was awarded to Peter Stetina?
CREATE TABLE table_25800134_9 (title VARCHAR, airdate VARCHAR)
SELECT title FROM table_25800134_9 WHERE airdate = "December 5, 1964"
ออกอากาศวันที่ 5 ธันวาคม 2507 ชื่ออะไรคะ?
what is the title where the airdate is december 5, 1964?
CREATE TABLE table_25800134_9 (series__number VARCHAR, airdate VARCHAR)
SELECT COUNT(series__number) FROM table_25800134_9 WHERE airdate = "December 26, 1964"
ซีรี่ย์ที่ออกอากาศวันที่ 26 ธันวาคม 2507 มีกี่เรื่องคะ?
what is the number of series where the airdate is december 26, 1964?
CREATE TABLE table_25831483_1 (actor_actress VARCHAR, first_appearance VARCHAR)
SELECT actor_actress FROM table_25831483_1 WHERE first_appearance = "3 June 2007"
นักแสดง/นักแสดงที่ปรากฏตัวครั้งแรกคือใครคือวันที่ 3 มิถุนายน พ.ศ. 2550?
Who was the actor/actress with a first appearance is 3 june 2007?
CREATE TABLE table_25831483_1 (actor_actress VARCHAR, character VARCHAR, last_appearance VARCHAR, total VARCHAR)
SELECT actor_actress FROM table_25831483_1 WHERE last_appearance = "1 January 2010" AND total = 20 AND character = "Vanessa 'Nessa' Jenkins"
ใครคือนักแสดง/นักแสดงที่ปรากฏตัวครั้งสุดท้ายในวันที่ 1 มกราคม 2010 และรวมอายุได้ 20 คน และตัวละครคือ วาเนสซา 'เนสซา' เจนกินส์
Who was the actor/actress with a last appearance of 1 january 2010 and total is 20 and character is vanessa 'nessa' jenkins?
CREATE TABLE table_25831483_1 (total INTEGER)
SELECT MAX(total) FROM table_25831483_1
จำนวนรวมสูงสุดคืออะไร?
What is the highest total number?
CREATE TABLE table_25831483_1 (character VARCHAR, actor_actress VARCHAR)
SELECT COUNT(character) FROM table_25831483_1 WHERE actor_actress = "Larry Lamb"
แลร์รี่ แลมบ์ มีตัวละครกี่ตัวที่นักแสดง/นักแสดงเป็น?
How many characters where actor/actress is larry lamb?
CREATE TABLE table_25831483_1 (last_appearance VARCHAR, actor_actress VARCHAR)
SELECT last_appearance FROM table_25831483_1 WHERE actor_actress = "Pam Ferris"
การปรากฏตัวครั้งสุดท้ายของนักแสดง/นักแสดงคือ แพม เฟอร์ริส คืออะไร?
What was the last appearance of actor/actress is pam ferris?
CREATE TABLE table_25831483_1 (total VARCHAR, actor_actress VARCHAR)
SELECT total FROM table_25831483_1 WHERE actor_actress = "Pam Ferris"
นักแสดง/นักแสดงเป็นแพม เฟอร์ริส มีทั้งหมดกี่คน?
How many total are there when actor/actress is pam ferris?
CREATE TABLE table_25869317_1 (gdp__ppp__per_capita INTEGER)
SELECT MIN(gdp__ppp__per_capita) FROM table_25869317_1
GDP ต่ำสุด (ppp) ต่อหัวคือเท่าไร?
What is the lowest GDP (ppp) per capita?
CREATE TABLE table_25923164_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_25923164_1 WHERE us_viewers__million_ = "12.88"
ใครเป็นผู้กำกับตอนที่มีผู้ชม 12.88 ล้านคน?
Who directed the episode that had 12.88 million viewers?
CREATE TABLE table_25923164_1 (original_air_date VARCHAR, written_by VARCHAR)
SELECT original_air_date FROM table_25923164_1 WHERE written_by = "Amanda Segel"
วันที่ออกอากาศดั้งเดิมของตอนที่เขียนโดย amanda segel คือเมื่อใด
What was the original air date of the episode written by amanda segel?
CREATE TABLE table_25923164_1 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_25923164_1 WHERE directed_by = "Gloria Muzio"
วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดย Gloria Muzio คือเมื่อใด
What was the original air date of the episode directed by gloria muzio?
CREATE TABLE table_25923164_1 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_25923164_1 WHERE directed_by = "Frederick E. O. Toye"
วันที่ออกอากาศดั้งเดิมของตอนที่กำกับโดยเฟรดเดอริก เอโอ ทอยคือเมื่อใด
What was the original air date of the episode directed by frederick e. o. toye?
CREATE TABLE table_2597876_2 (top_10 VARCHAR, team_s_ VARCHAR, avg_finish VARCHAR)
SELECT top_10 FROM table_2597876_2 WHERE team_s_ = "#10 Phil Parsons Racing" AND avg_finish = "22.9"
ทุกมูลค่าของ 10 อันดับแรกเมื่อทีมอันดับ 10 Phil Parsons Racing และจบสกอร์เฉลี่ยคือ 22.9 เป็นเท่าใด
What is every value of Top 10 when team is #10 Phil Parsons Racing and average finish is 22.9?
CREATE TABLE table_2597876_2 (year VARCHAR, avg_start VARCHAR)
SELECT year FROM table_2597876_2 WHERE avg_start = "27.2"
ทุกปีเริ่มต้นเฉลี่ย 27.2 คือเท่าไร?
What is every year with average start of 27.2?
CREATE TABLE table_2597876_2 (top_10 VARCHAR, position VARCHAR)
SELECT COUNT(top_10) FROM table_2597876_2 WHERE position = "5th"
10 อันดับแรกสำหรับอันดับที่ 5 มีกี่ค่า?
How many values of top 10 for 5th position?
CREATE TABLE table_2597876_2 (top_5 VARCHAR, avg_start VARCHAR)
SELECT top_5 FROM table_2597876_2 WHERE avg_start = "21.9"
ทุกค่าสำหรับ 5 อันดับแรกจะเป็นเท่าใดหากการเริ่มต้นเฉลี่ยคือ 21.9?
What is every value for top 5 if average start is 21.9?
CREATE TABLE table_2597876_2 (winnings VARCHAR, avg_start VARCHAR)
SELECT COUNT(winnings) FROM table_2597876_2 WHERE avg_start = "19.0"
ค่าชัยชนะที่สอดคล้องกับการเริ่มต้นเฉลี่ยที่ 19.0 มีกี่ค่า?
How many values for winnings correspond to average start of 19.0?
CREATE TABLE table_25987797_1 (location VARCHAR, school VARCHAR)
SELECT location FROM table_25987797_1 WHERE school = "Lucas"
โรงเรียนใน ลูคัส ชื่ออะไร?
What is the name of the school in Lucas ?
CREATE TABLE table_26077092_7 (pick__number INTEGER, player VARCHAR)
SELECT MAX(pick__number) FROM table_26077092_7 WHERE player = "Andrew Quarless"
หมายเลขที่เลือกของ Andrew Quarless คืออะไร?
What was the pick number for Andrew Quarless?
CREATE TABLE table_26077092_7 (player VARCHAR, college VARCHAR)
SELECT COUNT(player) FROM table_26077092_7 WHERE college = "Purdue"
มีผู้เล่นจาก Purdue กี่คน?
How many players are from Purdue?
CREATE TABLE table_26130295_3 (player VARCHAR, season_mvp VARCHAR, second_team VARCHAR)
SELECT player FROM table_26130295_3 WHERE season_mvp < 1.0 AND second_team < 1.0
ซึ่งเป็นผู้เล่นทั้งหมดเมื่อซีซั่น MVP น้อยกว่า 1.0 และทีมรองน้อยกว่า 1.0
who are all the players when season mvp is less than 1.0 and second team is less than 1.0
CREATE TABLE table_26130295_3 (player VARCHAR, first_team VARCHAR, number_of_selections VARCHAR)
SELECT player FROM table_26130295_3 WHERE first_team = 1 AND number_of_selections = 2
เมื่อจำนวนตัวเลือกคือ 2 และทีมแรกคือ 1 ซึ่งเป็นผู้เล่นทั้งหมด
when number of selection is 2 and first team is 1 who are all the player
CREATE TABLE table_26130295_3 (final_four_mvp INTEGER, first_team VARCHAR)
SELECT MAX(final_four_mvp) FROM table_26130295_3 WHERE first_team = 1
ค่า MVP สูงสุดสี่สุดท้ายจะเป็นเท่าไรเมื่อทีมแรกเป็น 1
what would be final four mvp maximum when first team is 1
CREATE TABLE table_26130295_3 (number_of_selections INTEGER, season_mvp INTEGER)
SELECT MAX(number_of_selections) FROM table_26130295_3 WHERE season_mvp > 1.0
เมื่อ MVP ของฤดูกาลมากกว่า 1.0 คือจำนวนการเลือกสูงสุดคือเท่าใด
when season mvp is larger than 1.0 what is the maximum number of selection
CREATE TABLE table_26130295_3 (first_team VARCHAR, player VARCHAR)
SELECT COUNT(first_team) FROM table_26130295_3 WHERE player = "Dimitris Diamantidis"
ซึ่งเป็นทีมชุดใหญ่เมื่อดิมิทริส เดียมานติดิสลงเล่น
who is first team when dimitris diamantidis play.
CREATE TABLE table_26129220_2 (term_limited INTEGER, residence VARCHAR)
SELECT MIN(term_limited) FROM table_26129220_2 WHERE residence = "Coshocton"
วุฒิสมาชิกที่อาศัยอยู่ในคอชอกตันมีกำหนดวาระเร็วที่สุดคือเท่าใด
What is the earliest term limit for the senator who resides in Coshocton?
CREATE TABLE table_26129220_2 (party VARCHAR, district VARCHAR)
SELECT party FROM table_26129220_2 WHERE district = 27
ปาร์ตี้เขต 27 คืออะไร?
What is the party for district 27?
CREATE TABLE table_26129220_2 (party VARCHAR, residence VARCHAR)
SELECT party FROM table_26129220_2 WHERE residence = "Canton"
ส.ว.จากแคนตันมีการแบ่งพรรคกี่พรรค?
How many party classifications are there for the senator from Canton?
CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR)
SELECT party FROM table_26129220_2 WHERE senator = "David Goodman"
วุฒิสมาชิกเดวิด กู๊ดแมนสังกัดพรรคอะไร?
What is the party affiliation for Senator David Goodman?
CREATE TABLE table_26129220_2 (term_limited INTEGER, senator VARCHAR)
SELECT MIN(term_limited) FROM table_26129220_2 WHERE senator = "Tom Niehaus"
วุฒิสมาชิก Tom Niehaus มีกำหนดระยะเวลาเท่าไร?
What is the term limit for Senator Tom Niehaus?
CREATE TABLE table_26129220_2 (party VARCHAR, senator VARCHAR)
SELECT party FROM table_26129220_2 WHERE senator = "Mark Wagoner"
มาร์ค วาโกเนอร์ วุฒิสมาชิกสังกัดพรรคอะไร?
What is the party affiliation for senator mark Wagoner?
CREATE TABLE table_26131768_4 (representative VARCHAR, residence VARCHAR)
SELECT representative FROM table_26131768_4 WHERE residence = "Chagrin Falls"
ถ้าที่อยู่อาศัยคือแชกรินตกใครคือตัวแทน?
If the residence is Chagrin falls, who is the representative?
CREATE TABLE table_26131768_4 (term_limited INTEGER, first_elected VARCHAR)
SELECT MIN(term_limited) FROM table_26131768_4 WHERE first_elected = "2003 (Appt.)"
หากได้รับการเลือกตั้งครั้งแรกในปี พ.ศ. 2546 (อนุมัติ) วาระนี้จำกัดเมื่อใด?
If first elected on 2003 (appt.), when was the term limited?
CREATE TABLE table_26131768_4 (residence VARCHAR, representative VARCHAR)
SELECT COUNT(residence) FROM table_26131768_4 WHERE representative = "Scott Oelslager"
สก็อตต์ โอเอลสลาเกอร์เป็นตัวแทนกี่ครั้ง?
How many times was Scott Oelslager a representative?
CREATE TABLE table_26131768_4 (district VARCHAR, residence VARCHAR)
SELECT district FROM table_26131768_4 WHERE residence = "Dublin"
ที่อยู่อาศัยดับลินตั้งอยู่ในเขตใด
In which district is the residence Dublin?
CREATE TABLE table_26131768_4 (term_limited VARCHAR, representative VARCHAR)
SELECT term_limited FROM table_26131768_4 WHERE representative = "Dave Hall"
หากตัวแทนคือเดฟ ฮอลล์ เงื่อนไขจะจำกัดเมื่อใด
If the representative is Dave Hall, when was the term limited?
CREATE TABLE table_26131768_4 (district INTEGER, representative VARCHAR)
SELECT MAX(district) FROM table_26131768_4 WHERE representative = "Barbara Sears"
ถ้าผู้แทนคือบาร์บารา เซียร์ เลขที่เขตอะไร
If the Representative is Barbara sears, what is the district number?
CREATE TABLE table_26139378_1 (original_airdate VARCHAR, viewers__in_millions_ VARCHAR)
SELECT original_airdate FROM table_26139378_1 WHERE viewers__in_millions_ = "8.23"
วันที่ออกอากาศดั้งเดิมของตอนที่มีผู้ชม 8.23 ล้านคนคือเมื่อใด
What is the original airdate of the episode that had 8.23 million viewers?
CREATE TABLE table_26139378_1 (viewers__in_millions_ VARCHAR, episode__number VARCHAR)
SELECT viewers__in_millions_ FROM table_26139378_1 WHERE episode__number = 16
ตอนที่ 16 มีผู้ชมกี่ล้านคน?
How many millions of viewers did Episode number 16 have?
CREATE TABLE table_26168687_5 (vessel_type VARCHAR, vessel_operator VARCHAR)
SELECT vessel_type FROM table_26168687_5 WHERE vessel_operator = "Beluga Shipping"
ตั้งชื่อประเภทเรือสำหรับการขนส่งเบลูก้า
Name the vessel type for beluga shipping
CREATE TABLE table_26168687_5 (vessel_type VARCHAR, vessel_operator VARCHAR)
SELECT vessel_type FROM table_26168687_5 WHERE vessel_operator = "DOF Subsea"
ตั้งชื่อประเภทเรือสำหรับ dof subsea
Name the vessel type for dof subsea
CREATE TABLE table_26168687_5 (no_in_season INTEGER)
SELECT MIN(no_in_season) FROM table_26168687_5
ตั้งชื่อหมายเลขมากที่สุดในฤดูกาล
Name the most number in season
CREATE TABLE table_26168687_5 (narrated_by VARCHAR, vessel_operator VARCHAR)
SELECT narrated_by FROM table_26168687_5 WHERE vessel_operator = "Beluga Shipping"
ตั้งชื่อผู้บรรยายโดยสำหรับการขนส่งเบลูก้า
Name the narraed by for beluga shipping
CREATE TABLE table_26168687_5 (no_in_season VARCHAR, vessel_operator VARCHAR)
SELECT COUNT(no_in_season) FROM table_26168687_5 WHERE vessel_operator = "Beluga Shipping"
ตั้งชื่อหมายเลขฤดูกาลสำหรับการจัดส่งเบลูก้า
Name the number of season for beluga shipping
CREATE TABLE table_2618102_1 (no_in_series INTEGER, directed_by VARCHAR)
SELECT MIN(no_in_series) FROM table_2618102_1 WHERE directed_by = "James Quinn"
ตั้งชื่อตัวเลขที่น้อยที่สุดในชุดของเจมส์ ควินน์
Name the least number in series for james quinn
CREATE TABLE table_2618102_1 (no_in_season INTEGER, written_by VARCHAR)
SELECT MIN(no_in_season) FROM table_2618102_1 WHERE written_by = "Brad Markowitz, William N. Fordes & René Balcer"
บอกชื่อหมายเลขที่น้อยที่สุดในฤดูกาลของแบรด มาร์โควิทซ์, วิลเลียม เอ็น. ฟอร์ด และ เรอเน่ บัลเซอร์
Name the least number in season for brad markowitz, william n. fordes & rené balcer
CREATE TABLE table_261913_1 (institution VARCHAR, location__all_in_minnesota_ VARCHAR)
SELECT institution FROM table_261913_1 WHERE location__all_in_minnesota_ = "St. Peter"
สถาบันใดตั้งอยู่ในเซนต์ปีเตอร์?
What institution is located in St. Peter?
CREATE TABLE table_261913_1 (enrollment INTEGER, institution VARCHAR)
SELECT MIN(enrollment) FROM table_261913_1 WHERE institution = "Augsburg College"
การลงทะเบียนสำหรับวิทยาลัย Augsburg คืออะไร?
What is the enrollment for Augsburg college?
CREATE TABLE table_261913_1 (founded INTEGER, joined VARCHAR)
SELECT MIN(founded) FROM table_261913_1 WHERE joined = "1977"
สถาบันก่อตั้งขึ้นและเข้าร่วมในปี 1977 เร็วที่สุดคือเมื่อใด
What was the earliest date an institution was founded that joined in 1977?
CREATE TABLE table_261927_2 (type VARCHAR, location VARCHAR)
SELECT COUNT(type) FROM table_261927_2 WHERE location = "Bridgewater, Massachusetts"
สถาบันในเมืองบริดจ์วอเตอร์ รัฐแมสซาชูเซตส์ ได้รับการจัดสรรประเภทที่แตกต่างกันกี่ประเภท
How many different types are allocated to the institution in Bridgewater, Massachusetts?
CREATE TABLE table_261927_2 (enrollment VARCHAR, location VARCHAR)
SELECT enrollment FROM table_261927_2 WHERE location = "Westfield, Massachusetts"
การลงทะเบียนสำหรับสถาบันใน Westfield, Massachusetts คืออะไร?
What is the enrollment for the institution in Westfield, Massachusetts?
CREATE TABLE table_261927_2 (institution VARCHAR, primary_conference VARCHAR)
SELECT institution FROM table_261927_2 WHERE primary_conference = "Merged into the University of Massachusetts Boston"
การประชุมเบื้องต้นของสถาบันใดที่รวมเข้ากับมหาวิทยาลัยแมสซาชูเซตส์บอสตัน
Which institutions primary conference is merged into the university of Massachusetts boston?
CREATE TABLE table_261927_2 (football_conference VARCHAR, location VARCHAR)
SELECT football_conference FROM table_261927_2 WHERE location = "Henniker, New Hampshire"
การประชุมฟุตบอลสำหรับเมืองเฮนนิเกอร์ รัฐนิวแฮมป์เชียร์> คืออะไร?
What is the football conference for Henniker, New Hampshire>?
CREATE TABLE table_261927_2 (joined VARCHAR, left VARCHAR, nickname VARCHAR)
SELECT joined FROM table_261927_2 WHERE left = "2013" AND nickname = "Corsairs"
สถาบันที่จากไปในปี 2013 และมีชื่อเล่นว่า Corsairs เข้าร่วมเมื่อใด
What date did the institution that left in 2013 and that is nicknamed Corsairs, join?
CREATE TABLE table_26199484_1 (written_by VARCHAR, no VARCHAR)
SELECT written_by FROM table_26199484_1 WHERE no = 38
ใครเป็นคนเขียนหัวข้อหมายเลข 38?
Who wrote title number 38?
CREATE TABLE table_26202812_7 (no VARCHAR, score_in_the_final VARCHAR)
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)"
นัดใดเป็นคะแนนสุดท้าย 7–6 (7–0) , 6–7 (5–7) , 4–6, 6–2, 6–7 (5–7)?
Which match was the final score 7–6 (7–0) , 6–7 (5–7) , 4–6, 6–2, 6–7 (5–7)?
CREATE TABLE table_26209210_2 (Ends INTEGER, w VARCHAR)
SELECT MIN(Ends) AS won FROM table_26209210_2 WHERE w = 8
จุดต่ำสุดที่ชนะเมื่อ W คือ 8 คืออะไร?
What is the lowest ends won when w is 8?
CREATE TABLE table_26214389_3 (grand_total INTEGER, qatari_male VARCHAR)
SELECT MAX(grand_total) FROM table_26214389_3 WHERE qatari_male = 1104
ถ้าชายชาวกาตาร์มี 1104 ผลรวมทั้งหมดเป็นเท่าใด
If the qatari male is 1104, what is the grand total?
CREATE TABLE table_26214389_3 (total_non_qatar VARCHAR, grand_total VARCHAR)
SELECT total_non_qatar FROM table_26214389_3 WHERE grand_total = 5814
หากผลรวมทั้งหมดคือ 5814 ผลรวมที่ไม่ใช่กาตาร์จะเป็นเท่าใด
If the grand total is 5814, what is the total non qatar?
CREATE TABLE table_26214389_3 (Non VARCHAR, year VARCHAR)
SELECT Non AS qatari_female FROM table_26214389_3 WHERE year = 2001
ถ้าปี 2544 ผู้หญิงที่ไม่ใช่ชาวกาตาร์คือใคร?
If the year is 2001, what are the non qatari female?
CREATE TABLE table_26214389_3 (total_female VARCHAR, qatari_female VARCHAR)
SELECT total_female FROM table_26214389_3 WHERE qatari_female = 918
ถ้ากาตาร์ตัวเมียมี 918 ตัว แล้วจำนวนตัวเมียทั้งหมดจะเป็นเท่าไหร่?
If the qatari female is 918, what is the total number of females?
CREATE TABLE table_26202940_6 (outcome VARCHAR, score_in_the_final VARCHAR)
SELECT COUNT(outcome) FROM table_26202940_6 WHERE score_in_the_final = "6–3, 6–4, 7–6 (13–11)"
คะแนนในรอบสุดท้ายของ 6–3, 6–4, 7–6 (13–11) มีผลลัพธ์กี่ผล?
How many outcomes occur for score in the final of 6–3, 6–4, 7–6 (13–11)?
CREATE TABLE table_26202940_6 (outcome VARCHAR, date VARCHAR)
SELECT COUNT(outcome) FROM table_26202940_6 WHERE date = "January 31, 2010"
วันที่ 31 มกราคม 2553 มีผลลัพธ์กี่รายการ?
How many outcomes occur on the date of January 31, 2010?
CREATE TABLE table_26202940_6 (no VARCHAR, score_in_the_final VARCHAR)
SELECT COUNT(no) FROM table_26202940_6 WHERE score_in_the_final = "6–3, 6–4, 7–6 (13–11)"
มีกี่หมายเลขที่ตรงกับคะแนนในรอบสุดท้ายของ 6–3, 6–4, 7–6 (13–11)
How many numbers correspond to the score in the final of 6–3, 6–4, 7–6 (13–11)?
CREATE TABLE table_26223231_1 (series VARCHAR, points VARCHAR)
SELECT series FROM table_26223231_1 WHERE points = "6"
มี 6 แต้มมีกี่แชมป์
How many championships are there when there are 6 points
CREATE TABLE table_26223231_1 (poles VARCHAR, wins VARCHAR)
SELECT poles FROM table_26223231_1 WHERE wins = 2
ชนะ 2 ครั้งได้กี่โพล?
When there are 2 wins, how many poles are?
CREATE TABLE table_2623498_5 (prod_code VARCHAR, episode__number VARCHAR)
SELECT prod_code FROM table_2623498_5 WHERE episode__number = "78"
รหัสการผลิตตอนที่ 78 คืออะไร?
What is the production code for episode #78?
CREATE TABLE table_2623498_5 (title VARCHAR, written_by VARCHAR)
SELECT COUNT(title) FROM table_2623498_5 WHERE written_by = "Charleen Easton"
ชาร์ลีน อีสตันเขียนเรื่องไว้กี่เรื่อง?
What is the number of titles written by Charleen Easton?
CREATE TABLE table_2623498_5 (prod_code VARCHAR, episode__number VARCHAR)
SELECT COUNT(prod_code) FROM table_2623498_5 WHERE episode__number = "73"
รหัสการผลิตตอนที่ 73 มีจำนวนเท่าไร?
What is the number of production codes for episode #73?
CREATE TABLE table_262481_2 (location VARCHAR, institution VARCHAR)
SELECT location FROM table_262481_2 WHERE institution = "Fisk University"
มหาวิทยาลัยฟิสก์ตั้งอยู่ที่ไหน?
where is Fisk University located?
CREATE TABLE table_262481_2 (nickname VARCHAR, founded VARCHAR)
SELECT nickname FROM table_262481_2 WHERE founded = 1857
สถาบันที่ก่อตั้งในปี พ.ศ. 2400 มีชื่อเล่นว่าอะไร?
What is the nickname of the institution that was founded in 1857?
CREATE TABLE table_262481_2 (enrollment VARCHAR, left VARCHAR, nickname VARCHAR)
SELECT enrollment FROM table_262481_2 WHERE left = "2012" AND nickname = "Panthers"
การลงทะเบียนสำหรับสถาบันที่มีชื่อเล่นว่าเสือดำที่จากไปในปี 2555 คืออะไร?
What is the enrollment for the institution nicknamed the panthers that left in 2012?
CREATE TABLE table_262481_2 (institution VARCHAR, current_conference VARCHAR)
SELECT institution FROM table_262481_2 WHERE current_conference = "GCAC (NAIA)"
สถาบันที่มีการประชุมปัจจุบันคือ gcac (naia) คือสถาบันใด?
What is the institution whose current conference is gcac (naia)?
CREATE TABLE table_26250176_1 (original_artist VARCHAR, theme VARCHAR)
SELECT COUNT(original_artist) FROM table_26250176_1 WHERE theme = "Group Performance"
มีศิลปินดั้งเดิมกี่คนสำหรับการแสดงของกลุ่ม?
How many original artists were there for the Group Performance?