context
stringlengths
27
489
answer
stringlengths
18
557
question_th
stringlengths
8
226
question_en
stringlengths
12
244
CREATE TABLE table_17848578_1 (record VARCHAR, game_site VARCHAR)
SELECT record FROM table_17848578_1 WHERE game_site = "San Diego Stadium"
สถิติเมื่อเกมอยู่ที่ซานดิเอโก สเตเดี้ยมเป็นอย่างไรบ้าง?
What is the record when the game was at the San Diego Stadium?
CREATE TABLE table_17848578_1 (result VARCHAR, game_site VARCHAR)
SELECT COUNT(result) FROM table_17848578_1 WHERE game_site = "Atlanta-Fulton County Stadium"
เมื่อเกมที่สนามกีฬาแอตแลนตา-ฟุลตันเคาน์ตีมีผลลัพธ์กี่รายการ?
How many results are there when the game was at the Atlanta-Fulton county stadium?
CREATE TABLE table_17848578_1 (date VARCHAR, game_site VARCHAR)
SELECT date FROM table_17848578_1 WHERE game_site = "Arrowhead Stadium"
เกมที่แอร์โรว์เฮด สเตเดี้ยม ตรงกับวันไหน?
What is the date of the game at Arrowhead Stadium?
CREATE TABLE table_17848578_1 (game_site VARCHAR, attendance VARCHAR)
SELECT game_site FROM table_17848578_1 WHERE attendance = 51478
เกมไหนที่มีผู้เข้าร่วม 51478?
Where was the game where attendance was 51478?
CREATE TABLE table_17971449_2 (military_expenditures__2011 VARCHAR, _us$_millions_ VARCHAR, country VARCHAR)
SELECT military_expenditures__2011, _us$_millions_ FROM table_17971449_2 WHERE country = "Romania"
ตั้งชื่อรายจ่ายทางการทหารประจำปี 2554 สำหรับโรมาเนีย
Name the military expenditures for 2011 for romania
CREATE TABLE table_17971449_2 (population__2011_ VARCHAR, country VARCHAR)
SELECT population__2011_ FROM table_17971449_2 WHERE country = "Luxembourg"
ตั้งชื่อประชากรปี 2011 สำหรับประเทศลักเซมเบิร์ก
Name the population 2011 for luxembourg
CREATE TABLE table_17971449_2 (deployable_military__2011 VARCHAR, _thousands_ VARCHAR, country VARCHAR)
SELECT deployable_military__2011, _thousands_ FROM table_17971449_2 WHERE country = "Denmark"
ตั้งชื่อกองทัพที่ปรับใช้ได้ประจำปี 2011 สำหรับเดนมาร์ก
Name the deployable military 2011 for denmark
CREATE TABLE table_18018214_2 (loses VARCHAR, club VARCHAR)
SELECT COUNT(loses) FROM table_18018214_2 WHERE club = "Tauras Tauragė"
รายชื่อผู้แพ้ทั้งหมดของทีม tauras tauragė
List total loses forh the tauras tauragė team.
CREATE TABLE table_18018214_2 (goals_conceded INTEGER, points VARCHAR)
SELECT MIN(goals_conceded) FROM table_18018214_2 WHERE points = 58
ระบุจำนวนประตูที่ทำได้เท่ากับ 58
List the number of goals scored to equal 58.
CREATE TABLE table_1802522_3 (reason_for_change VARCHAR, successor VARCHAR)
SELECT COUNT(reason_for_change) FROM table_1802522_3 WHERE successor = "Leonard B. Jordan (R)"
มีรายการเหตุผลในการเปลี่ยนแปลงทั้งหมดกี่ข้อที่สอดคล้องกับผู้สืบทอดตำแหน่งลีโอนาร์ด บี. จอร์แดน (ขวา)
How many total reason for change are listed corresponding to the successor Leonard B. Jordan (r)?
CREATE TABLE table_1802522_3 (state__class_ VARCHAR, date_of_successors_formal_installation VARCHAR)
SELECT state__class_ FROM table_1802522_3 WHERE date_of_successors_formal_installation = "November 30, 1962"
รัฐใดมีวันที่ 30 พฤศจิกายน พ.ศ. 2505 เป็นวันที่ผู้สืบทอดตำแหน่งอย่างเป็นทางการ?
What state had November 30, 1962 as the date of the successors formal installation?
CREATE TABLE table_1802522_3 (vacator VARCHAR, successor VARCHAR)
SELECT COUNT(vacator) FROM table_1802522_3 WHERE successor = "Joseph H. Bottum (R)"
ผู้มาใหม่ Joseph H. Bottum (r) มีที่นั่งว่างกี่ที่นั่ง?
How many vacant seats were filled by newcomer Joseph H. Bottum (r)?
CREATE TABLE table_1805191_36 (results VARCHAR, incumbent VARCHAR)
SELECT results FROM table_1805191_36 WHERE incumbent = "Marcy Kaptur"
ผลการเลือกตั้งที่มี Marcy Kaptur ดำรงตำแหน่งเป็นอย่างไร?
What are the results of those elections for which Marcy Kaptur is the incumbent?
CREATE TABLE table_1805191_36 (results VARCHAR, incumbent VARCHAR)
SELECT results FROM table_1805191_36 WHERE incumbent = "Ted Strickland"
อะไรคือผลลัพธ์ของการเลือกตั้งที่ Ted Strickland ต้องการได้รับการเลือกตั้งใหม่?
What are the results of the elections in which Ted Strickland is seeking re-election?
CREATE TABLE table_1805191_36 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1805191_36 WHERE incumbent = "Dennis Kucinich"
ใครคือผู้สมัครทั้งหมดในการเลือกตั้งที่ Dennis Kucinich เป็นผู้สมัคร?
Who are all of the candidates in elections where Dennis Kucinich was a candidate?
CREATE TABLE table_1805191_36 (candidates VARCHAR, incumbent VARCHAR)
SELECT candidates FROM table_1805191_36 WHERE incumbent = "Steve Chabot"
ใครคือผู้สมัครทั้งหมดในการเลือกตั้งที่ Steve Chabot เป็นผู้สมัคร?
Who were all the candidates in elections in which Steve Chabot was a candidate?
CREATE TABLE table_18052353_4 (treasurer VARCHAR, year VARCHAR)
SELECT treasurer FROM table_18052353_4 WHERE year = "2008"
ใครเป็นเหรัญญิกในปี 2551?
Who was treasurer in 2008?
CREATE TABLE table_18052353_4 (state_assembly VARCHAR, year VARCHAR)
SELECT state_assembly FROM table_18052353_4 WHERE year = "2008"
องค์ประกอบของรัฐสภาในปี 2551 คืออะไร?
What was the composition of the state assembly in 2008?
CREATE TABLE table_18055005_1 (no_in_series VARCHAR, prod_code VARCHAR)
SELECT no_in_series FROM table_18055005_1 WHERE prod_code = "329"
ซีรีย์ตอนที่มีรหัสการผลิต 329 คือหมายเลขซีรีส์อะไร
What's the series number of the episode with production code 329?
CREATE TABLE table_18055005_1 (no_in_series VARCHAR, viewers__millions_ VARCHAR, written_by VARCHAR)
SELECT no_in_series FROM table_18055005_1 WHERE viewers__millions_ = "4.1" AND written_by = "Douglas Lieblein"
ซีรีส์ตอนนี้มีผู้ชม 4.1 ล้านคนและเขียนโดย Douglas Lieblein มีจำนวนซีรีส์เท่าใด
What's the series number of the episode originally viewed by 4.1 million people and written by Douglas Lieblein?
CREATE TABLE table_18106841_1 (year INTEGER, winners__percentage_votes VARCHAR)
SELECT MIN(year) FROM table_18106841_1 WHERE winners__percentage_votes = "55.99%"
ผู้ชนะโหวต 55.99% ในปีใด?
What year was the winners vote 55.99%?
CREATE TABLE table_18106841_1 (members_of_parliament VARCHAR, winners__percentage_votes VARCHAR)
SELECT members_of_parliament FROM table_18106841_1 WHERE winners__percentage_votes = "50.54%"
เมื่อผู้ชนะมีคะแนนเสียง 50.54% ใครเป็นสมาชิกรัฐสภาบ้าง?
When the winners votes were 50.54% who were the members of parliment?
CREATE TABLE table_18102421_2 (us_viewers__millions_ VARCHAR, directed_by VARCHAR)
SELECT us_viewers__millions_ FROM table_18102421_2 WHERE directed_by = "Allison Liddi-Brown"
ผู้ชมในสหรัฐฯ กี่ล้านคนดูตอนที่กำกับโดย Allison Liddi-Brown
How many millions of U.S. viewers watched the episode directed by Allison Liddi-Brown?
CREATE TABLE table_18102421_2 (title VARCHAR, us_viewers__millions_ VARCHAR)
SELECT title FROM table_18102421_2 WHERE us_viewers__millions_ = "13.82"
ชื่อเรื่องของตอนที่มีผู้ชม 13.82 ล้านคนในสหรัฐฯ คืออะไร?
What was the title of the episode that had 13.82 million U.S. viewers?
CREATE TABLE table_18143210_2 (club VARCHAR, top_division_titles VARCHAR)
SELECT club FROM table_18143210_2 WHERE top_division_titles = 10
สโมสรใดที่คว้าแชมป์ดิวิชั่นสูงสุด 10 รายการ?
What was the club that won 10 top division titles?
CREATE TABLE table_18143210_2 (first_season_in_top_division VARCHAR, club VARCHAR)
SELECT first_season_in_top_division FROM table_18143210_2 WHERE club = "UNAM"
สโมสร UNAM เล่นฤดูกาลแรกในดิวิชั่นสูงสุดเมื่อใด?
When did the club UNAM played the first season in top division?
CREATE TABLE table_18143210_2 (first_season_of_current_spell_in_top_division VARCHAR, first_season_in_top_division VARCHAR)
SELECT first_season_of_current_spell_in_top_division FROM table_18143210_2 WHERE first_season_in_top_division = "1964-65"
เมื่อใดคือ 'ฤดูกาลแรกของคาถาปัจจุบันในดิวิชั่นสูงสุด' หากฤดูกาลแรกในดิวิชั่นสูงสุดคือในปี 1964-65?
When was the 'first season of current spell in top division' if the first season in top division is in 1964-65?
CREATE TABLE table_18143210_2 (top_division_titles VARCHAR, first_season_of_current_spell_in_top_division VARCHAR)
SELECT top_division_titles FROM table_18143210_2 WHERE first_season_of_current_spell_in_top_division = "1979-80"
มีกี่แชมป์ลีกสูงสุดในช่วง 'ฤดูกาลแรกของคาถาปัจจุบันในดิวิชั่นสูงสุด' ในปี 1979-80
How many top division titles were won during the 'first season of current spell in top division' in 1979-80?
CREATE TABLE table_18143210_2 (number_of_seasons_in_top_division INTEGER, first_season_in_top_division VARCHAR)
SELECT MAX(number_of_seasons_in_top_division) FROM table_18143210_2 WHERE first_season_in_top_division = "1990-91"
มีการเล่น 'จำนวนฤดูกาลในดิวิชั่นสูงสุด' กี่รายการหากเกม 'ฤดูกาลแรกในดิวิชั่นสูงสุด' คือในปี 1990-91?
How many 'number of seasons in top division' were played if the 'first season in top division' games is in 1990-91?
CREATE TABLE table_18143210_2 (number_of_seasons_in_liga_mx VARCHAR, first_season_of_current_spell_in_top_division VARCHAR)
SELECT number_of_seasons_in_liga_mx FROM table_18143210_2 WHERE first_season_of_current_spell_in_top_division = "1962-63"
มีการเล่น 'จำนวนฤดูกาลใน Liga MX' กี่รายการหาก 'ฤดูกาลแรกของคาถาปัจจุบันในดิวิชั่นสูงสุด' คือในปี 1962-63
How many 'number of season in Liga MX' were played if the 'first season of current spell in top division' is in 1962-63?
CREATE TABLE table_18173916_8 (wednesday VARCHAR, monday VARCHAR)
SELECT wednesday FROM table_18173916_8 WHERE monday = "363 The Hangover Part II"
บทไหนถ่ายทอดวันพุธ ถ้าตอน "363 the hangover part ii" ส่งวันจันทร์?
which chapter was Transmitted on wednesday if the episode of "363 the hangover part ii" was transmitted on monday?
CREATE TABLE table_18173916_8 (wednesday VARCHAR, thursday VARCHAR)
SELECT wednesday FROM table_18173916_8 WHERE thursday = "438 Magic: The Gathering Mini Masters Tournament"
ตอนไหนที่ออกอากาศวันพุธ ถ้าตอน "438 magic: the Gathering Mini Masters Tournament" ออกอากาศวันพฤหัสบดี?
which episode was Transmitted on wednesday if the episode of "438 magic: the gathering mini masters tournament" was transmitted on thursday?
CREATE TABLE table_18173916_8 (friday VARCHAR, tuesday VARCHAR)
SELECT friday FROM table_18173916_8 WHERE tuesday = "414 Insanely Twisted Shadow Planet"
ตอนไหนถ่ายทอดวันศุกร์ ถ้าตอน "414 ดาวเคราะห์เงาบิดเบี้ยว" ถ่ายทอดวันอังคาร?
which episode was Transmitted on friday if the episode of "414 insanely twisted shadow planet" was transmitted on tuesday?
CREATE TABLE table_18173916_8 (friday VARCHAR, monday VARCHAR)
SELECT friday FROM table_18173916_8 WHERE monday = "515 The Adventures of Tintin"
ตอนไหนออกอากาศวันศุกร์ ถ้าตอน "515 การผจญภัยของตินติน" ถ่ายทอดวันจันทร์?
which episode was Transmitted on friday if the episode of "515 the adventures of tintin" was transmitted on monday?
CREATE TABLE table_18173916_8 (wednesday VARCHAR, tuesday VARCHAR)
SELECT COUNT(wednesday) FROM table_18173916_8 WHERE tuesday = "319 Sucker Punch"
ตอนไหนถ่ายทอดวันพุธ ถ้าตอน "319ห่วยพันช์" ส่งวันอังคาร?
which episode was Transmitted on wednesday if the episode of "319 sucker punch" was transmitted on tuesday?
CREATE TABLE table_18173916_8 (wednesday VARCHAR, friday VARCHAR)
SELECT wednesday FROM table_18173916_8 WHERE friday = "307 VS."
ตอนไหนออกอากาศวันพุธ ถ้าเป็นตอน "307 ปะทะ" ถูกส่งเมื่อวันศุกร์เหรอ?
which episode was Transmitted on wednesday if the episode of "307 vs." was transmitted on friday?
CREATE TABLE table_18198579_6 (scoring_average VARCHAR, best_finish VARCHAR)
SELECT scoring_average FROM table_18198579_6 WHERE best_finish = "T35"
ตั้งชื่อค่าเฉลี่ยการให้คะแนนสำหรับฟินซิห์ที่ดีที่สุดคือ t35
Name the scoring average for best finsih being t35
CREATE TABLE table_18198579_6 (top_10s VARCHAR, scoring_rank VARCHAR)
SELECT COUNT(top_10s) FROM table_18198579_6 WHERE scoring_rank = "9"
ตั้งชื่อหมายเลข 10 อันดับแรกสำหรับคะแนนอันดับ 9
Name the number of top 10s for scoring rank of 9
CREATE TABLE table_182298_5 (total VARCHAR, mens_open VARCHAR)
SELECT total FROM table_182298_5 WHERE mens_open = 7
ถ้า 7 ชนะ Men's Open มีผู้ชนะทั้งหมดกี่คน?
How many are the total winners if 7 won the Men's Open?
CREATE TABLE table_182298_5 (mens_open VARCHAR, country VARCHAR)
SELECT COUNT(mens_open) FROM table_182298_5 WHERE country = "Sweden"
ถ้าผู้เล่นมาจากสวีเดนจะได้ Men's Open กี่คน?
How many won the Men's Open if the players are from Sweden?
CREATE TABLE table_182298_5 (total VARCHAR, country VARCHAR)
SELECT total FROM table_182298_5 WHERE country = "South Korea"
ผู้ชนะทั้งหมดมีกี่คนจากเกาหลีใต้?
How many are the total winners from South Korea?
CREATE TABLE table_18254488_2 (p INTEGER, player VARCHAR)
SELECT MIN(p) FROM table_18254488_2 WHERE player = "Shaun Maloney"
เมื่อ shaun maloney เป็นผู้เล่น p ต่ำสุดคือเท่าไร?
When shaun maloney is the player what is the lowest p?
CREATE TABLE table_18254488_2 (uefa_champions_league INTEGER)
SELECT MAX(uefa_champions_league) FROM table_18254488_2
ยูฟ่าแชมเปียนส์ลีค มีจำนวนมากที่สุดคือเท่าไร?
What is the highest amount of uefa champion leagues?
CREATE TABLE table_18254488_2 (league_cup INTEGER, player VARCHAR)
SELECT MIN(league_cup) FROM table_18254488_2 WHERE player = "Koki Mizuno"
เมื่อโคกิ มิซูโนะเป็นนักเตะ ลีกคัพต่ำสุดคือถ้วยไหน?
When koki mizuno is the player what is the lowest league cup?
CREATE TABLE table_18254488_2 (position VARCHAR, player VARCHAR)
SELECT COUNT(position) FROM table_18254488_2 WHERE player = "Koki Mizuno"
เมื่อโคกิ มิซูโนะเป็นนักเตะ ตำแหน่งแมนมีอะไรบ้าง?
When koki mizuno is the player how man positions are there?
CREATE TABLE table_18268826_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(written_by) FROM table_18268826_1 WHERE us_viewers__million_ = "3.24"
มีนักเขียนจำนวนกี่ตอนที่มีผู้ชม 3.24 ล้านคนในสหรัฐอเมริกา
How many episodes by different writers were seen by 3.24 million people in the US?
CREATE TABLE table_18268826_1 (no_in_season INTEGER, us_viewers__million_ VARCHAR)
SELECT MAX(no_in_season) FROM table_18268826_1 WHERE us_viewers__million_ = "3.19"
หมายเลขซีซันของตอนที่มีผู้ชม 3.19 ล้านคนในสหรัฐอเมริกาคือเท่าใด
What's the season number of the episode viewed by 3.19 million people in the US?
CREATE TABLE table_18268826_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT written_by FROM table_18268826_1 WHERE us_viewers__million_ = "3.25"
ใครคือผู้เขียนตอนนี้ที่มีผู้ชม 3.25 ล้านคนในสหรัฐอเมริกา
Who's the writer of the episode seen by 3.25 million people in the US?
CREATE TABLE table_18268826_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_18268826_1 WHERE us_viewers__million_ = "3.93"
ใครเป็นผู้กำกับตอนนี้ที่มีผู้ชม 3.93 ล้านคนในสหรัฐอเมริกา?
Who directed the episode seen by 3.93 million people in the US?
CREATE TABLE table_18277458_2 (ticket_price_s_ VARCHAR, date_s_ VARCHAR)
SELECT ticket_price_s_ FROM table_18277458_2 WHERE date_s_ = "August 7, 1987"
ตั๋วสำหรับวันที่ 7 สิงหาคม 1987 ราคาเท่าไหร่?
How much do the tickets cost for August 7, 1987?
CREATE TABLE table_18277458_2 (ticket_sold___available VARCHAR, venue VARCHAR)
SELECT ticket_sold___available FROM table_18277458_2 WHERE venue = "Carver-Hawkeye Arena"
Carver-Hawkeye Arena ขายตั๋วได้กี่ใบ
How many tickets are sold for the Carver-Hawkeye Arena?
CREATE TABLE table_1827690_4 (no VARCHAR, elected VARCHAR)
SELECT no FROM table_1827690_4 WHERE elected = "1462/63"
เมื่อ พ.ศ. 1462/63 ได้รับเลือกเป็นลำดับที่.?
When 1462/63 was the elected what was the no.?
CREATE TABLE table_1827690_4 (assembled VARCHAR, elected VARCHAR)
SELECT assembled FROM table_1827690_4 WHERE elected = "1472"
เมื่อปี พ.ศ. 1472 ได้รับการเลือกตั้งเมื่อไร?
When 1472 was the elected when was the assembled?
CREATE TABLE table_18278508_6 (scores_by_each_individual_judge VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
SELECT COUNT(scores_by_each_individual_judge) FROM table_18278508_6 WHERE co_contestant__yaar_vs_pyaar_ = "Mukul Dev"
ผู้เข้าแข่งขันที่แข่งขันกับ Mukul Dev ให้คะแนนโดยกรรมการแต่ละคนแตกต่างกันมากน้อยเพียงใด
How many different combinations of scores by individual judges were given to the contestant competing against Mukul Dev?
CREATE TABLE table_18278508_6 (position VARCHAR, main_contestant VARCHAR, date_performed VARCHAR)
SELECT position FROM table_18278508_6 WHERE main_contestant = "Kashmira Shah" AND date_performed = "August 14"
แคชเมียร์ ชาห์ มีจุดยืนอย่างไรในวันที่ 14 สิงหาคม?
What was Kashmira Shah's position on August 14?
CREATE TABLE table_18278508_6 (total_score_week VARCHAR, date_performed VARCHAR, position VARCHAR)
SELECT total_score_week FROM table_18278508_6 WHERE date_performed = "August 14" AND position = "Bottom 2"
คะแนนรวม/สัปดาห์ของผู้เข้าแข่งขันที่เข้ารอบ 2 อันดับสุดท้ายในวันที่ 14 ส.ค. เป็นอย่างไร?
What was the total score / week of the contestant who placed in the bottom 2 on august 14?
CREATE TABLE table_18278508_6 (scores_by_each_individual_judge VARCHAR, main_contestant VARCHAR, date_performed VARCHAR)
SELECT scores_by_each_individual_judge FROM table_18278508_6 WHERE main_contestant = "Karanvir Bohra" AND date_performed = "August 13"
กรรมการของ Karanvir Bohra เมื่อวันที่ 13 สิงหาคมได้คะแนนเท่าไร
What were the scores by the individual judges for Karanvir Bohra on August 13?
CREATE TABLE table_18278508_4 (main_contestant VARCHAR, position VARCHAR, co_contestant__yaar_vs_pyaar_ VARCHAR)
SELECT COUNT(main_contestant) FROM table_18278508_4 WHERE position = "Safe" AND co_contestant__yaar_vs_pyaar_ = "Tina Parekh"
บอกชื่อผู้เข้าแข่งขันหลักทั้งหมดเพื่อตำแหน่งที่ปลอดภัยของทีน่า ปาเรห์
Name the total number of main contestants for safe position for tina parekh
CREATE TABLE table_18278508_4 (status VARCHAR, main_contestant VARCHAR, date_performed VARCHAR)
SELECT status FROM table_18278508_4 WHERE main_contestant = "Karanvir Bohra" AND date_performed = "July 30"
ตั้งชื่อสถานะของ karanvir bohra และวันที่ดำเนินการคือ 30 กรกฎาคม
Name the status for karanvir bohra and date performed being july 30
CREATE TABLE table_18349697_1 (province VARCHAR, _community VARCHAR, age VARCHAR)
SELECT province, _community FROM table_18349697_1 WHERE age = 27
จังหวัดไหนที่ผู้เข้าประกวดอายุ 27 ปี?
What is the province where the age of the contestant is 27?
CREATE TABLE table_18367694_3 (no_in_season VARCHAR, directed_by VARCHAR)
SELECT no_in_season FROM table_18367694_3 WHERE directed_by = "Joan Tewkesbury"
เมื่อ Joan Tewkesbury เป็นผู้กำกับ ซีซั่นละเท่าไหร่?
When joan tewkesbury is the director what is the number in seasons?
CREATE TABLE table_18428024_3 (no_in_series VARCHAR, directed_by VARCHAR)
SELECT no_in_series FROM table_18428024_3 WHERE directed_by = "John Banas"
John Banas กำกับซีรีส์กี่เรื่อง?
How many series did John Banas direct?
CREATE TABLE table_18428024_3 (original_air_date VARCHAR, no_in_series VARCHAR)
SELECT COUNT(original_air_date) FROM table_18428024_3 WHERE no_in_series = 360
ซีรีส์ 360 ออกอากาศตอนแรกเมื่อใด
What is the original air date in series 360?
CREATE TABLE table_18461635_1 (coach VARCHAR, location VARCHAR)
SELECT coach FROM table_18461635_1 WHERE location = "Leicester"
ใครคือโค้ชของทีมเลสเตอร์?
Who is the coach of the team in Leicester?
CREATE TABLE table_18461635_1 (team VARCHAR, county VARCHAR)
SELECT team FROM table_18461635_1 WHERE county = "Derbyshire"
ทีมจากเดอร์บี้ไชร์เคาน์ตี้ชื่ออะไร?
What is the name of the team from Derbyshire county?
CREATE TABLE table_18461635_1 (captain VARCHAR, team VARCHAR)
SELECT captain FROM table_18461635_1 WHERE team = "Gloucestershire Gladiators"
ใครคือกัปตันของ Gloucestershire Gladiators?
Who is the captain of the Gloucestershire Gladiators?
CREATE TABLE table_18461635_1 (captain VARCHAR, location VARCHAR)
SELECT captain FROM table_18461635_1 WHERE location = "Southampton"
ใครคือกัปตันทีมเซาแธมป์ตัน?
Who is the captain of the team in Southampton?
CREATE TABLE table_18461635_1 (location VARCHAR, county VARCHAR)
SELECT location FROM table_18461635_1 WHERE county = "Sussex"
ทีมงานในเขต Sussex ตั้งอยู่ที่ไหน?
Where is the team in Sussex county located?
CREATE TABLE table_18461635_1 (captain VARCHAR, county VARCHAR)
SELECT captain FROM table_18461635_1 WHERE county = "Essex"
ใครคือกัปตันทีมในเขตเอสเซ็กซ์?
Who is the captain of the team in Essex county?
CREATE TABLE table_1850282_5 (tobago VARCHAR, species VARCHAR)
SELECT tobago FROM table_1850282_5 WHERE species = "Helicops angulatus"
มีในสายพันธุ์โตเบโกชื่อ helicops angulatus
there are in tobago species name helicops angulatus
CREATE TABLE table_1850282_5 (tobago VARCHAR, species VARCHAR)
SELECT tobago FROM table_1850282_5 WHERE species = "Liophis cobellus cobellus"
อยู่ในสายพันธุ์โตเบโก liophis cobellus cobellus หรือไม่?
are in tobago species liophis cobellus cobellus?
CREATE TABLE table_1852650_1 (ending_with INTEGER)
SELECT MAX(ending_with) FROM table_1852650_1
ชื่อที่ลงท้ายด้วยมากที่สุด
Name the most ending with
CREATE TABLE table_1852650_1 (ending_with INTEGER, sung_by VARCHAR)
SELECT MAX(ending_with) FROM table_1852650_1 WHERE sung_by = "Peyalvar"
ชื่อที่ลงท้ายด้วยมากที่สุดสำหรับ peyalvar
Name the most ending with for peyalvar
CREATE TABLE table_1852650_1 (starting_from INTEGER, name_of_the_prabandham VARCHAR)
SELECT MIN(starting_from) FROM table_1852650_1 WHERE name_of_the_prabandham = "Thiruvezhukkurrirukkai"
ตั้งชื่อขึ้นต้นจาก ธีรุเวชุกเคอร์ริรักไก
Name the starting from thiruvezhukkurrirukkai
CREATE TABLE table_1852650_1 (starting_from VARCHAR, name_of_the_prabandham VARCHAR)
SELECT starting_from FROM table_1852650_1 WHERE name_of_the_prabandham = "Amalanadhi piran"
ตั้งชื่อขึ้นต้นจากอมาลานาธี ปิรัน
Name the starting from amalanadhi piran
CREATE TABLE table_18563954_3 (reason_for_change VARCHAR, state__class_ VARCHAR)
SELECT reason_for_change FROM table_18563954_3 WHERE state__class_ = "Massachusetts (2)"
เหตุใดการเปลี่ยนแปลงจึงเกิดขึ้นในแมสซาชูเซตส์ (2)
Why did the change happened in Massachusetts (2)?
CREATE TABLE table_18563954_3 (reason_for_change VARCHAR, state__class_ VARCHAR)
SELECT COUNT(reason_for_change) FROM table_18563954_3 WHERE state__class_ = "Connecticut (3)"
มีเหตุผลที่แตกต่างกันกี่ประการสำหรับการเปลี่ยนแปลงในคอนเนตทิคัต (3)
How many different reasons are there for the change in Connecticut (3)?
CREATE TABLE table_1855342_5 (background INTEGER, ability_to_compromise VARCHAR)
SELECT MAX(background) FROM table_1855342_5 WHERE ability_to_compromise = 13
เมื่อความสามารถในการประนีประนอมเป็น 13 พื้นหลังคืออะไร?
When the ability to compromise is 13, what is background?
CREATE TABLE table_1855342_5 (ability_to_compromise INTEGER, seq VARCHAR)
SELECT MAX(ability_to_compromise) FROM table_1855342_5 WHERE seq = "41"
เมื่อ seq เป็น 41 ความสามารถในการประนีประนอมคืออะไร?
When the seq is 41, what is the ability to compromise?
CREATE TABLE table_1855342_5 (leadership_ability INTEGER, overall_ability VARCHAR)
SELECT MAX(leadership_ability) FROM table_1855342_5 WHERE overall_ability = 32
เมื่อความสามารถอายุ 32 ความสามารถในการเป็นผู้นำคืออะไร?
When the ability is 32, what is the leadership ability?
CREATE TABLE table_1855342_5 (experts_view INTEGER, willing_to_take_risks VARCHAR)
SELECT MIN(experts_view) FROM table_1855342_5 WHERE willing_to_take_risks = 25
เมื่อ 25 คนยอมเสี่ยง ผู้เชี่ยวชาญมีมุมมองอย่างไร?
When 25 are willing to take risks, what is the experts view?
CREATE TABLE table_18569389_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
SELECT directed_by FROM table_18569389_1 WHERE us_viewers__million_ = "4.22"
ชื่อผู้กำกับตอนที่มียอดดู 4.22 ล้าน
Name who directed the episode that was viewed by 4.22 million
CREATE TABLE table_18569389_1 (title VARCHAR, production_code VARCHAR)
SELECT title FROM table_18569389_1 WHERE production_code = "2T6908"
ตั้งชื่อชื่อเรื่องสำหรับรหัสการผลิต 2t6908
Name the title for production code 2t6908
CREATE TABLE table_18569389_1 (no_in_series VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(no_in_series) FROM table_18569389_1 WHERE us_viewers__million_ = "3.62"
ทายผลรวมเลขในซีรีส์ที่มีคนดู 3.62 คน
Name the total number for number in series that got 3.62 viewers
CREATE TABLE table_18569389_1 (original_air_date VARCHAR, directed_by VARCHAR)
SELECT original_air_date FROM table_18569389_1 WHERE directed_by = "Chris Long"
ตั้งชื่อวันออกอากาศที่คริสลองกำกับ
Name the air date that chris long directed
CREATE TABLE table_18569389_1 (production_code VARCHAR, us_viewers__million_ VARCHAR)
SELECT COUNT(production_code) FROM table_18569389_1 WHERE us_viewers__million_ = "5.08"
ตั้งชื่อหมายเลขรหัสการผลิตสำหรับ 5.08
Name the number of production code for 5.08
CREATE TABLE table_1858574_2 (yacht VARCHAR, loa__metres_ VARCHAR)
SELECT yacht AS Type FROM table_1858574_2 WHERE loa__metres_ = "17.07"
เมื่อเวลา 17.07 น. เป็นเรือยอทช์ประเภทใด
When 17.07 is the loa (metres) what is the type of yacht?
CREATE TABLE table_1858574_2 (sail_number VARCHAR, position VARCHAR)
SELECT sail_number FROM table_1858574_2 WHERE position = 3
เมื่อ 3 อยู่ตำแหน่งอะไร ใบเรือคืออะไร?
When 3 is the position what is the sail number?
CREATE TABLE table_1858574_2 (sail_number VARCHAR, yacht VARCHAR)
SELECT sail_number FROM table_1858574_2 WHERE yacht = "Aspect Computing"
เมื่อการคำนวณแง่มุมเป็นเรือยอชท์หมายเลขใบเรือคืออะไร?
When aspect computing is the yacht what is the sail number?
CREATE TABLE table_1858574_2 (yacht VARCHAR, sail_number VARCHAR)
SELECT yacht AS Type FROM table_1858574_2 WHERE sail_number = "6606"
เมื่อ 6606 เป็นหมายเลขใบเรือของเรือยอร์ชประเภทใด?
When 6606 is the sail number what is the type of yacht?
CREATE TABLE table_1858574_2 (state_country VARCHAR, position VARCHAR)
SELECT state_country FROM table_1858574_2 WHERE position = 5
เมื่อ 5 ดำรงตำแหน่งอะไรเป็นรัฐหรือประเทศ?
When 5 is the position what is the state or country?
CREATE TABLE table_18600760_1 (ansi_code INTEGER, pop__2010_ VARCHAR)
SELECT MIN(ansi_code) FROM table_18600760_1 WHERE pop__2010_ = 609
ตั้งชื่อรหัส ansi ที่น้อยที่สุดสำหรับประชากร 609 คนในปี 2010
Name the least ansi code for 609 population 2010
CREATE TABLE table_18600760_1 (ansi_code INTEGER, township VARCHAR)
SELECT MIN(ansi_code) FROM table_18600760_1 WHERE township = "Ashtabula"
ตั้งชื่อรหัส ansi หน้า Ashtabula
Name the ansi code fore ashtabula
CREATE TABLE table_18600760_1 (land___sqmi__ VARCHAR, township VARCHAR)
SELECT COUNT(land___sqmi__) FROM table_18600760_1 WHERE township = "Ada"
ตั้งชื่อที่ดินให้อาดา
Name the land for ada
CREATE TABLE table_18597302_1 (position INTEGER, team VARCHAR)
SELECT MAX(position) FROM table_18597302_1 WHERE team = "Atl. Colegiales"
ตำแหน่งของ Atl คืออะไร ทีมโคลจิเลสเหรอ?
What was the position of the Atl. Colegiales team?
CREATE TABLE table_18597302_1 (position VARCHAR, points VARCHAR)
SELECT COUNT(position) FROM table_18597302_1 WHERE points = 9
ตำแหน่งที่ทีมทำคะแนนได้ 9 แต้ม อยู่ที่ตำแหน่งใด?
What was the position where the team scored 9 points?
CREATE TABLE table_18598175_2 (eliminated_by VARCHAR, time VARCHAR)
SELECT COUNT(eliminated_by) FROM table_18598175_2 WHERE time = "32:32"
มีผู้เล่นกี่คนที่กำจัดคู่ต่อสู้ภายในกรอบเวลา 32:32 น.?
How many player eliminated an opponent within the time frame of 32:32?
CREATE TABLE table_18598175_2 (method_of_elimination VARCHAR, time VARCHAR)
SELECT method_of_elimination FROM table_18598175_2 WHERE time = "32:32"
รูปแบบใดที่ใช้ในการเอาชนะคู่ต่อสู้ภายในกรอบเวลา 32:32?
What was the styled used to defeat the opponent within the time frame of 32:32?
CREATE TABLE table_18598175_2 (eliminated_by VARCHAR, method_of_elimination VARCHAR)
SELECT eliminated_by FROM table_18598175_2 WHERE method_of_elimination = "Pedigree"
ใครเป็นผู้ชนะการแข่งขันเมื่อผู้ชนะใช้การโจมตีแบบ Pedigree?
Who won the match when the winner used the Pedigree attack?
CREATE TABLE table_18598175_2 (elimination_number INTEGER, time VARCHAR)
SELECT MIN(elimination_number) FROM table_18598175_2 WHERE time = "27:27"
นักมวยที่ชกภายในเวลา 27:27 น. มีหมายเลขคัดออกเท่าไหร่?
What was the elimination number of the fighter who fought within 27:27?