thai_instruction
stringlengths
8
429
eng_instruction
stringlengths
16
503
table
stringlengths
11
2.09k
sql
stringlengths
9
2.37k
pandas
stringlengths
1
635
real_table
stringclasses
2 values
ตอนที่ 38 มีผู้ชมกี่ล้านคน?ไม่จำเป็นต้องใช้ตารางทั้งหมด
How many viewers in millions for episode number 38?It is not neccessary to use all the tables.
table_28257: "No." [ real] "#" [ real] "Title" [ text] "Director" [ text] "Writer(s)" [ text]
SELECT "U.S. viewers (million)" FROM table_28257 WHERE "No." = '38'
null
general
นับจำนวนกัปตันที่อายุน้อยกว่า 50 ปีในแต่ละอันดับด้วยแผนภูมิแท่ง โดยแสดงจากมากไปหาน้อยตามแกน y ไม่จำเป็นต้องใช้ตารางทั้งหมด
Count the number of captains younger than 50 of each rank by a bar chart, show in descending by the y-axis.It is not neccessary to use all the tables.
Ship: Ship_ID [ int] Name [ text] Type [ text] Built_Year [ real] Class [ text] Flag [ text]
SELECT Rank, COUNT(*) FROM captain WHERE age < 50 GROUP BY Rank ORDER BY COUNT(*) DESC
null
general
เมื่อใดที่มีฝูงชนมากกว่า 23,000 คน?ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด
When was there a crowd larger than 23,000?It is not neccessary to use all the tables.
table_11179: "Venue" [ text] "Crowd" [ real] "Date" [ text]
SELECT "Date" FROM table_11179 WHERE "Crowd" > '23,000'
null
general
หมายเหตุของ Andre vonarburg คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด
what is the notes for andre vonarburg?It is not neccessary to use all the tables.
table_name_24: notes [ VARCHAR] athlete [ VARCHAR]
SELECT notes FROM table_name_24 WHERE athlete = "andre vonarburg"
null
general
พนักงานส่วนใหญ่เป็นเพศไหน?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
Which gender makes up the majority of the staff?It is not neccessary to use all the tables.
staff: gender [ VARCHAR]
SELECT gender FROM staff GROUP BY gender ORDER BY COUNT(*) DESC LIMIT 1
null
general
มหาวิทยาลัยภาคตะวันออกเฉียงเหนือเข้าร่วมเมื่อใด?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
When did Northeastern University join?It is not neccessary to use all the tables.
table_15481: "Institution" [ text] "Location" [ text] "Founded" [ real] "Type" [ text] "Joined" [ real] "Nickname" [ text] "Colors" [ text]
SELECT SUM("Joined") FROM table_15481 WHERE "Institution" = 'northeastern university'
null
general
การแข่งขันประเภทใดที่ทีม Mi-Jack Conquest ชนะด้วยตำแหน่งโพลโพซิชั่นของ Andreas Wirth?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
What race did the team Mi-Jack Conquest racing win with a pole position of andreas wirth?It is not neccessary to use all the tables.
table_name_16: race_name [ VARCHAR] winning_team [ VARCHAR] pole_position [ VARCHAR]
SELECT race_name FROM table_name_16 WHERE winning_team = "mi-jack conquest racing" AND pole_position = "andreas wirth"
null
general
ความชุกของฐานข้อมูล, Database Schema ไม่จำเป็นต้องใช้ตารางทั้งหมด
Prevalence of Database, Database Schema.It is not neccessary to use all the tables.
PostTags: PostId [ number] TagId [ number]
SELECT COUNT(Id) FROM Posts WHERE (Tags LIKE '%database%' OR Tags LIKE '%database schema%' OR Tags LIKE '%schema%')
null
general
รหัสบริการและประเภทใดที่มีจำนวนผู้เข้าร่วมน้อยที่สุด?ไม่จำเป็นต้องใช้ตารางทั้งหมด
Which service id and type has the least number of participants?It is not neccessary to use all the tables.
participants: participant_id [ number] participant_type_code [ text] participant_details [ text]
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
null
general
อะไรหายไป เมื่อ Points For คือ '205'?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is Lost, when Points For is '205'?It is not neccessary to use all the tables.
table_name_16: lost [ VARCHAR] points_for [ VARCHAR]
SELECT lost FROM table_name_16 WHERE points_for = "205"
null
general
ตำแหน่งรวมของ 1 เป็นเท่าไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What's the total of the position of 1?It is not neccessary to use all the tables.
table_79517: "Position" [ real] "Athlete" [ text] "Compulsory" [ real] "Voluntary" [ real] "Total" [ real]
SELECT SUM("Total") FROM table_79517 WHERE "Position" < '1'
null
general
ระบุโรคเบื้องต้นของผู้ป่วย บรูซ แฮร์ริส พร้อมด้วยรหัส icd9 ไม่จำเป็นต้องใช้ทุกตาราง
Specify primary disease of patient Bruce Harris along with the icd9 code.It is not neccessary to use all the tables.
lab: subject_id [ text] hadm_id [ text] itemid [ text] charttime [ text] flag [ text] value_unit [ text] label [ text] fluid [ text]
SELECT demographic.diagnosis, diagnoses.icd9_code FROM demographic INNER JOIN diagnoses ON demographic.hadm_id = diagnoses.hadm_id WHERE demographic.name = "Bruce Harris"
null
general
ผู้เล่นคนใดมีพาร์ +1 ด้วยคะแนน 71-67-73=211?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What player has a To Par of +1 with a score of 71-67-73=211?It is not neccessary to use all the tables.
table_name_89: player [ VARCHAR] to_par [ VARCHAR] score [ VARCHAR]
SELECT player FROM table_name_89 WHERE to_par = "+1" AND score = 71 - 67 - 73 = 211
null
general
บอกฉันว่า loewst เข้ารับตำแหน่งสำหรับ madeleine bordallo ไม่จำเป็นต้องใช้ตารางทั้งหมด
Tell me the loewst assume office for madeleine bordalloIt is not neccessary to use all the tables.
table_name_60: assumed_office [ INTEGER] name [ VARCHAR]
SELECT MIN(assumed_office) FROM table_name_60 WHERE name = "madeleine bordallo"
null
general
รูปแบบยาสองแบบอยู่ที่ไหน?ไม่จำเป็นต้องใช้ตารางทั้งหมด
Where is two medicine formation?It is not neccessary to use all the tables.
table_name_46: location [ VARCHAR] unit [ VARCHAR]
SELECT location FROM table_name_46 WHERE unit = "two medicine formation"
null
general
ใครคือกัปตันทีมเยือนที่ลงเล่นเมื่อวันที่ 12,13,14 มิ.ย. 2445 ซึ่งผลเสมอกัน?ไม่จำเป็นต้องใช้ทุกโต๊ะ
Who was the Away captain that played on 12,13,14 Jun 1902 which resulted in a draw?It is not neccessary to use all the tables.
table_name_83: away_captain [ VARCHAR] result [ VARCHAR] date [ VARCHAR]
SELECT away_captain FROM table_name_83 WHERE result = "draw" AND date = "12,13,14 jun 1902"
null
general
ผู้ใช้ 100 อันดับแรกในอินเดีย ไม่จำเป็นต้องใช้ตารางทั้งหมด
Top 100 user in India.It is not neccessary to use all the tables.
ReviewTaskStates: Id [ number] Name [ text] Description [ text]
SELECT ROW_NUMBER() OVER (ORDER BY Users.Reputation DESC) AS "#", Users.Id AS "user_link", Users.Age, Users.Location, Users.Reputation, Users.Views, Users.UpVotes, Users.DownVotes, (SELECT COUNT(*) FROM Posts AS PQ WHERE PostTypeId = 1 AND PQ.OwnerUserId = Users.Id) AS "questions", (SELECT COUNT(*) FROM Posts AS PA WHERE PostTypeId = 2 AND PA.OwnerUserId = Users.Id) AS "answers" FROM Users WHERE Users.Id LIKE '%shakun%' ORDER BY Reputation DESC LIMIT 100
null
general
ใครเล่นเป็นเจ้าบ้านเมื่อวิทเรียเป็นทีมเยือน?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
Who played as the home team when Vit ria was the away team?It is not neccessary to use all the tables.
table_75947: "Round" [ text] "Date" [ text] "Score" [ text]
SELECT "Home team" FROM table_75947 WHERE "Away team" = 'vitória'
null
general
ตั้งชื่อสนามด้วยสกอร์สุดท้าย 20-10 ไม่จำเป็นต้องใช้ตารางทั้งหมด
Name the stadium with final score of 20-10It is not neccessary to use all the tables.
table_name_35: stadium [ VARCHAR] final_score [ VARCHAR]
SELECT stadium FROM table_name_35 WHERE final_score = "20-10"
null
general
เมืองใดบ้างที่ตั้งอยู่ในเขตเทศบาลมอสส์?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What are the cities/towns located in the municipality of Moss?It is not neccessary to use all the tables.
table_72719: "City/town" [ text] "Municipality" [ text] "County" [ text] "Population" [ real]
SELECT "City/town" FROM table_72719 WHERE "Municipality" = 'Moss'
null
general
เลนต่ำสุดคืออะไรเมื่อการตอบสนองมากกว่า 0.164 และสัญชาติคือกินี? ไม่จำเป็นต้องใช้ตารางทั้งหมด
what is the lowest lane when react is more than 0.164 and the nationality is guinea?It is not neccessary to use all the tables.
table_name_64: lane [ INTEGER] react [ VARCHAR] nationality [ VARCHAR]
SELECT MIN(lane) FROM table_name_64 WHERE react > 0.164 AND nationality = "guinea"
null
general
ปีที่คาดว่าจะแล้วเสร็จเมื่อมีความจุ 22,500 คือเท่าไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is the year of expected completion when the capacity is 22,500?It is not neccessary to use all the tables.
table_name_15: expected_completion [ VARCHAR] capacity [ VARCHAR]
SELECT expected_completion FROM table_name_15 WHERE capacity = "22,500"
null
general
รหัสและรหัสไปรษณีย์ของที่อยู่ที่มีค่าเช่ารายเดือนสูงสุดคืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What are the id and zip code of the address with the highest monthly rental?It is not neccessary to use all the tables.
ref_incident_type: incident_type_code [ text] incident_type_description [ text]
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
null
general
จนกระทั่ง 2 ปีที่แล้ว อะไรคือขั้นตอนการรักษาที่พบบ่อยที่สุดสามอันดับแรกที่ผู้ป่วยได้รับการเข้ารับการตรวจในโรงพยาบาลครั้งเดียวกันหลังจากการวินิจฉัยบาดแผลที่ชายเสื้อใต้สมอง? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด
until 2 years ago what were the top three most frequent procedures that patients received in the same hospital visit after the diagnosis of traumatic subdural hem?It is not neccessary to use all the tables.
inputevents_cv: row_id [ number] subject_id [ number] hadm_id [ number] icustay_id [ number] charttime [ time] itemid [ number] amount [ number]
SELECT d_icd_procedures.short_title FROM d_icd_procedures WHERE d_icd_procedures.icd9_code IN (SELECT t3.icd9_code FROM (SELECT t2.icd9_code, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime, admissions.hadm_id FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'traumatic subdural hem') AND DATETIME(diagnoses_icd.charttime) <= DATETIME(CURRENT_TIME(), '-2 year')) AS t1 JOIN (SELECT admissions.subject_id, procedures_icd.icd9_code, procedures_icd.charttime, admissions.hadm_id FROM procedures_icd JOIN admissions ON procedures_icd.hadm_id = admissions.hadm_id WHERE DATETIME(procedures_icd.charttime) <= DATETIME(CURRENT_TIME(), '-2 year')) AS t2 ON t1.subject_id = t2.subject_id WHERE t1.charttime < t2.charttime AND t1.hadm_id = t2.hadm_id GROUP BY t2.icd9_code) AS t3 WHERE t3.c1 <= 3)
null
general
หมายเลขซีรีส์ใดที่ออกอากาศครั้งแรกคือวันที่ 1 มีนาคม พ.ศ. 2534 ไม่จำเป็นต้องใช้ตารางทั้งหมด
What series number had an original airdate of March 1, 1991?It is not neccessary to use all the tables.
table_26540: "Title" [ text]
SELECT MIN("No. in series") FROM table_26540 WHERE "Original air date" = 'March 1, 1991'
null
general
ก่อนวันที่ 6 กรกฎาคม 2547 เงินรางวัลสูงสุดคือเท่าไร ?ไม่จำเป็นต้องใช้ทุกโต๊ะ
previous to july 6 , 2004 what is the highest prize money ?It is not neccessary to use all the tables.
table_203_282: id [ number] "date" [ text] "racecourse" [ text] "distance" [ text] "race" [ text] "position" [ text] "jockey" [ text] "rating" [ number] "going" [ text] "odds" [ text]
SELECT MAX("prize money") FROM table_203_282 WHERE id < (SELECT id FROM table_203_282 WHERE "date" = 'july 6, 2004')
null
general
ใครคือผู้สร้างรอบที่ 5?ไม่จำเป็นต้องใช้ตารางทั้งหมด
Who is the Constructor for round 5?It is not neccessary to use all the tables.
table_name_58: constructor [ VARCHAR] rounds [ VARCHAR]
SELECT constructor FROM table_name_58 WHERE rounds = "5"
null
general
แสดงระยะทางต่ำสุด เฉลี่ย และสูงสุดที่เดินทางในเครื่องบินทุกลำ ไม่จำเป็นต้องใช้ตารางทั้งหมด
Return the minimum, average and maximum distances traveled across all aircrafts.It is not neccessary to use all the tables.
flight: flno [ number] origin [ text] destination [ text] distance [ number] departure_date [ time] arrival_date [ time] price [ number] aid [ number]
SELECT MIN(distance), AVG(distance), MAX(distance) FROM aircraft
null
general
ชื่อย่อของขั้นตอนของ Paul Edwards คืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is the procedure short title of Paul Edwards?It is not neccessary to use all the tables.
demographic: subject_id [ text] hadm_id [ text] name [ text] marital_status [ text] age [ text] dob [ text] gender [ text] language [ text] religion [ text] admission_type [ text] days_stay [ text] insurance [ text] ethnicity [ text] expire_flag [ text] admission_location [ text] discharge_location [ text] diagnosis [ text] dod [ text] dob_year [ text] dod_year [ text] admittime [ text] dischtime [ text] admityear [ text]
SELECT procedures.short_title FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.name = "Paul Edwards"
null
general
ฝ่ายที่ 2 คนใดมีการเลือกตั้งในปี พ.ศ. 2380? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด
Which 2nd Party has an Election of 1837?It is not neccessary to use all the tables.
table_name_96: election [ VARCHAR]
SELECT 2 AS nd_party FROM table_name_96 WHERE election = "1837"
null
general
มีผู้ป่วยเชื้อสายอเมริกันผิวดำ/แอฟริกันจำนวนกี่รายที่ได้รับการบำบัดเพิ่มเติม?ไม่จำเป็นต้องใช้ตารางทั้งหมด
how many of the patients belonging to black/african american ethnic origin received additive therapy?It is not neccessary to use all the tables.
prescriptions: subject_id [ text] hadm_id [ text] icustay_id [ text] drug_type [ text] drug [ text] formulary_drug_cd [ text] route [ text] drug_dose [ text]
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.ethnicity = "BLACK/AFRICAN AMERICAN" AND prescriptions.drug_type = "ADDITIVE"
null
general
ค่าเฉลี่ยของเราด้วยการรับสัญญาณมากกว่า 1 ครั้งและต่ำกว่า 1 TD เป็นเท่าใด? ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is the average for wes ours with over 1 reception and under 1 TD?It is not neccessary to use all the tables.
table_78274: "Player" [ text] "Rec." [ real] "Yards" [ real] "Avg." [ real] "TD's" [ real] "Long" [ real]
SELECT SUM("Avg.") FROM table_78274 WHERE "Rec." > '1' AND "Player" = 'wes ours' AND "TD's" < '1'
null
general
ในปีที่ผ่านมามีผู้ป่วยที่ออกจากโรงพยาบาลได้กี่ราย ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
during the last year how many patients were discharged from the hospital?It is not neccessary to use all the tables.
diagnosis: diagnosisid [ number] patientunitstayid [ number] diagnosisname [ text] diagnosistime [ time] icd9code [ text]
SELECT COUNT(DISTINCT patient.uniquepid) FROM patient WHERE NOT patient.hospitaldischargetime IS NULL AND DATETIME(patient.hospitaldischargetime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year')
null
general
GPU Frequency คืออะไร เมื่อ Model Number คือ Atom N435?ไม่จำเป็นต้องใช้ทุกตาราง
What is GPU Frequency, when Model Number is Atom N435?It is not neccessary to use all the tables.
table_9826: "Frequency" [ text] "Memory" [ text] "Voltage" [ text] "Socket" [ text]
SELECT "GPU frequency" FROM table_9826 WHERE "Model number" = 'atom n435'
null
general
คนไข้ที่มีอายุตั้งแต่ 54 ปีขึ้นไปต้องนอนโรงพยาบาลขั้นต่ำคือกี่วัน ไม่จำเป็นต้องใช้ทุกโต๊ะ
what is the minimum days of hospital stay of patients who are aged 54 years or more than that?It is not neccessary to use all the tables.
prescriptions: subject_id [ text] hadm_id [ text] icustay_id [ text] drug_type [ text] drug [ text] formulary_drug_cd [ text] route [ text] drug_dose [ text]
SELECT MIN(demographic.days_stay) FROM demographic WHERE demographic.age >= "54"
null
general
แสดงชื่อของผลิตภัณฑ์และจำนวนเหตุการณ์ที่อยู่ใน Visualize ตามแผนภูมิแท่ง เรียงลำดับตามแถบ ไม่จำเป็นต้องใช้ตารางทั้งหมด
Show the names of products and the number of events they are in Visualize by bar chart, sort in desc by the bars.It is not neccessary to use all the tables.
Events: Event_ID [ INTEGER] Address_ID [ INTEGER] Channel_ID [ INTEGER] Event_Type_Code [ CHAR(15)] Finance_ID [ INTEGER] Location_ID [ INTEGER]
SELECT 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 Product_Name DESC
null
general
ขีดจำกัดอัตราเมื่ออัตราการเปลี่ยนแปลงที่ต้องการ (%) คือ +40.4 คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is the rate limit when the desired rate change (%) is +40.4?It is not neccessary to use all the tables.
table_25316812_1: rate_limit__p_ [ VARCHAR] desired_rate_change___percentage_ [ VARCHAR]
SELECT rate_limit__p_ FROM table_25316812_1 WHERE desired_rate_change___percentage_ = "+40.4"
null
general
การแข่งขันกระชับมิตรด้วยสกอร์ 4-0 วันที่เท่าไหร่?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What was the date of the friendly competition with a score of 4-0?It is not neccessary to use all the tables.
table_5408: "Date" [ text] "Venue" [ text] "Score" [ text] "Result" [ text] "Competition" [ text]
SELECT "Date" FROM table_5408 WHERE "Competition" = 'friendly' AND "Score" = '4-0'
null
general
บอกประเทศสำหรับ julian schnabel ให้ฉันหน่อยไม่จำเป็นต้องใช้ตารางทั้งหมด
Tell me the country for julian schnabelIt is not neccessary to use all the tables.
table_name_38: country [ VARCHAR] director [ VARCHAR]
SELECT country FROM table_name_38 WHERE director = "julian schnabel"
null
general
ผู้ป่วย 16549 ไปโรงพยาบาลครั้งแรกจนถึงปี 2104 เป็นครั้งแรกเมื่อใด?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
when is the first time patient 16549 visited the hospital until 2104?It is not neccessary to use all the tables.
icustays: row_id [ number] subject_id [ number] hadm_id [ number] icustay_id [ number] first_careunit [ text] last_careunit [ text] first_wardid [ number] last_wardid [ number] intime [ time] outtime [ time]
SELECT admissions.admittime FROM admissions WHERE admissions.subject_id = 16549 AND STRFTIME('%y', admissions.admittime) <= '2104' ORDER BY admissions.admittime LIMIT 1
null
general
ยาลดความดันโลหิต - beta blocker ราคาเท่าไหร่ไม่จำเป็นต้องใช้ตารางทั้งหมด
how much does antihypertensive drug - beta blocker cost.It is not neccessary to use all the tables.
allergy: allergyid [ number] patientunitstayid [ number] drugname [ text] allergyname [ text] allergytime [ time]
SELECT DISTINCT cost.cost FROM cost WHERE cost.eventtype = 'treatment' AND cost.eventid IN (SELECT treatment.treatmentid FROM treatment WHERE treatment.treatmentname = 'antihypertensive drug - beta blocker')
null
general
รวบรวมวันที่จ้างพนักงานไว้ในช่วงวันในสัปดาห์ แล้วนับเพื่อแสดงแผนภูมิแท่ง ไม่จำเป็นต้องใช้ตารางทั้งหมด
Bin the hire date of employees into the day of week interval and count them for visualizing a bar chart.It is not neccessary to use all the tables.
countries: COUNTRY_ID [ varchar(2)] COUNTRY_NAME [ varchar(40)] REGION_ID [ decimal(100)]
SELECT HIRE_DATE, COUNT(HIRE_DATE) FROM employees
null
general
EMBA 603 จะช่วยฉันปฏิบัติตามข้อกำหนดใดๆ นอกเหนือจากวิชาเลือกทั่วไปหรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด
Will EMBA 603 help me fulfill any requirement besides general elective ?It is not neccessary to use all the tables.
requirement: requirement_id [ int] requirement [ varchar] college [ varchar]
SELECT DISTINCT program_course.category FROM course, program_course WHERE course.department = 'EMBA' AND course.number = 603 AND program_course.course_id = course.course_id
null
general
เป้าหมายที่มีคะแนน 108 และแพ้น้อยกว่า 14 มีค่าเฉลี่ยเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด
Goalsagainst that has a Points of 108, and a Lost smaller than 14 has what average?It is not neccessary to use all the tables.
table_70638: "Season" [ text] "Games" [ real] "Lost" [ real] "Points" [ real] "Goalsfor" [ real] "Goalsagainst" [ real]
SELECT AVG("Goalsagainst") FROM table_70638 WHERE "Points" = '108' AND "Lost" < '14'
null
general
สำหรับบันทึกเหล่านั้นจากผลิตภัณฑ์และผู้ผลิตแต่ละผลิตภัณฑ์ ให้แสดงความสัมพันธ์ระหว่างผู้ผลิตและรหัส และจัดกลุ่มตามชื่อแอตทริบิวต์ในแผนภูมิกระจาย ไม่จำเป็นต้องใช้ตารางทั้งหมด
For those records from the products and each product's manufacturer, show me about the correlation between manufacturer and code , and group by attribute name in a scatter chart.It is not neccessary to use all the tables.
Manufacturers: Code [ INTEGER] Name [ VARCHAR(255)] Headquarter [ VARCHAR(255)] Founder [ VARCHAR(255)] Revenue [ REAL]
SELECT T1.Manufacturer, T1.Code FROM Products AS T1 JOIN Manufacturers AS T2 ON T1.Manufacturer = T2.Code GROUP BY Name
null
general
ค่าพาร์ต่ำสุดคือเท่าใด เมื่อผลรวมมากกว่า 148 และเมื่อปีที่ชนะคือ '1959 , 1968 , 1974' ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is the lowest To par, when Total is greater than 148, and when Year(s) Won is '1959 , 1968 , 1974'?It is not neccessary to use all the tables.
table_name_97: to_par [ INTEGER] total [ VARCHAR] year_s__won [ VARCHAR]
SELECT MIN(to_par) FROM table_name_97 WHERE total < 148 AND year_s__won = "1959 , 1968 , 1974"
null
general
คู่ต่อสู้คือใคร 1-0?ไม่จำเป็นต้องใช้ทุกโต๊ะ
Who was the opponent with a series of 1-0?It is not neccessary to use all the tables.
table_name_79: opponent [ VARCHAR] series [ VARCHAR]
SELECT opponent FROM table_name_79 WHERE series = "1-0"
null
general
อะไรคือความประณีตก่อนปี 2550?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What was the fineness prior to 2007?It is not neccessary to use all the tables.
table_name_28: fineness [ VARCHAR] year [ INTEGER]
SELECT fineness FROM table_name_28 WHERE year < 2007
null
general
ฝ่ายตรงข้ามคนใดมีที่ตั้งของสนามมีดโกนแบ็ค ฟาเยตต์วิลล์, อาร์ และวันที่ 7 ตุลาคม 1967? ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด
What Opponent has a Site of razorback stadium fayetteville, ar, and a Date of october 7, 1967?It is not neccessary to use all the tables.
table_name_29: opponent [ VARCHAR] site [ VARCHAR] date [ VARCHAR]
SELECT opponent FROM table_name_29 WHERE site = "razorback stadium • fayetteville, ar" AND date = "october 7, 1967"
null
general
นับจำนวนผู้ป่วยตามใบสั่งยา norepinephrine ที่เกิดก่อนปี พ.ศ. 2109 ไม่จำเป็นต้องใช้ทุกตาราง
count the number of patients on norepinephrine prescription who were born before the year 2109.It is not neccessary to use all the tables.
prescriptions: subject_id [ text] hadm_id [ text] icustay_id [ text] drug_type [ text] drug [ text] formulary_drug_cd [ text] route [ text] drug_dose [ text]
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.dob_year < "2109" AND prescriptions.drug = "NORepinephrine"
null
general
ทีมตีลูกในอินเดียซึ่งเป็นคู่หูของ Sachin Tendulkar และ Rahul Dravid เป็นเจ้าภาพในสถานที่ใด?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
In what venue was the Batting team India who featured partners Sachin Tendulkar and Rahul Dravid?It is not neccessary to use all the tables.
table_9273: "Wicket" [ text] "Runs" [ text] "Venue" [ text] "Date" [ text]
SELECT "Venue" FROM table_9273 WHERE "Batting team" = 'india' AND "Batting partners" = 'sachin tendulkar and rahul dravid'
null
general
ทีมเยือนชาร์ลตัน แอธเลติกมีคะแนนเท่าไหร่?ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด
What score has charlton athletic as the away team?It is not neccessary to use all the tables.
table_76133: "Score" [ text] "Date" [ text]
SELECT "Score" FROM table_76133 WHERE "Away team" = 'charlton athletic'
null
general
ผู้เล่น Aaron Williams มาจากทีมโรงเรียน/สโมสรใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What School/Club Team is Player Aaron Williams from?It is not neccessary to use all the tables.
table_51730: "Player" [ text] "Nationality" [ text] "Position" [ text]
SELECT "School/Club Team" FROM table_51730 WHERE "Player" = 'aaron williams'
null
general
ผู้ป่วยผู้ใหญ่ > / = อายุ 18 ปี ไม่จำเป็นต้องใช้ทุกโต๊ะ
adult patients, > / = 18 years of ageIt is not neccessary to use all the tables.
table_dev_50: "id" [ int] "gender" [ string] "hemoglobin_a1c_hba1c" [ float] "diabetic" [ string] "estimated_glomerular_filtration_rate_egfr" [ int] "hba1c" [ float] "age" [ float] "NOUSE" [ float]
SELECT * FROM table_dev_50 WHERE age >= 18
null
general
ในระหว่างรอบใดที่เป็นการป้องกันรอบแรกโดยมีอันดับโดยรวมมากกว่า 186 ร่าง?ไม่จำเป็นต้องใช้ตารางทั้งหมด
During which round was the first defensive end with an overall rank larger than 186 drafted?It is not neccessary to use all the tables.
table_4873: "Round" [ real] "Overall" [ real] "Player" [ text] "Position" [ text]
SELECT MIN("Round") FROM table_4873 WHERE "Overall" > '186' AND "Position" = 'defensive end'
null
general
มุสลิมโดยเฉลี่ยที่มีจำนวนดรูซน้อยกว่า 2,534 คนในหนึ่งปีก่อนปี 2548 และชาวยิวมากกว่า 100,657 คนเป็นเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is the average muslim that has a druze less than 2,534, a year prior to 2005, and a jewish greater than 100,657?It is not neccessary to use all the tables.
table_35409: "Year" [ real] "Jewish" [ real] "Muslim" [ real] "Christian" [ real] "Druze" [ real] "Total" [ real]
SELECT AVG("Muslim") FROM table_35409 WHERE "Druze" < '2,534' AND "Year" = '2005' AND "Jewish" > '100,657'
null
general
มีการขับไปกี่รอบเมื่อเวลา/เกษียณคือ +44.284?ไม่จำเป็นต้องใช้ตารางทั้งหมด
How many laps were driven when the time/retired is +44.284?It is not neccessary to use all the tables.
table_name_93: laps [ VARCHAR] time_retired [ VARCHAR]
SELECT COUNT(laps) FROM table_name_93 WHERE time_retired = "+44.284"
null
general
robert nkemdiche ไปเรียนที่วิทยาลัยที่ไหนไม่จำเป็นต้องใช้ตารางทั้งหมด
Where did robert nkemdiche go to collegeIt is not neccessary to use all the tables.
table_11677691_8: college [ VARCHAR] player [ VARCHAR]
SELECT college FROM table_11677691_8 WHERE player = "Robert Nkemdiche ‡"
null
general
ความแปลกใหม่ของ Tylocephale คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is the novelty of Tylocephale?It is not neccessary to use all the tables.
table_42374: "Name" [ text] "Novelty" [ text] "Status" [ text] "Authors" [ text] "Location" [ text]
SELECT "Novelty" FROM table_42374 WHERE "Name" = 'tylocephale'
null
general
หาบเร่คนไหนมีบริการมากกว่ากัน กวางหาบเร่หรือกวางหลังหาบเร่ ?ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด
which hawker had more in service . the hawker hart or the hawker hind ?It is not neccessary to use all the tables.
table_204_161: id [ number] "name" [ text] "primary\nrole(s)" [ text] "service\nperiod" [ text] "#\nused" [ number]
SELECT "name" FROM table_204_161 WHERE "name" IN ('hawker hart', 'hawker hind') ORDER BY "#\nused" DESC LIMIT 1
null
general
ซึ่งเป็นคลาส A เมื่อ Marion เป็นคลาส AA ไม่จำเป็นต้องใช้ตารางทั้งหมด
Which is the class A when Marion was the class AAIt is not neccessary to use all the tables.
table_19559:
SELECT "Class A" FROM table_19559 WHERE "Class AA" = 'Marion'
null
general
สนามแคนเบอร์ราจัดรอบไหน?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
What round was in canberra stadium?It is not neccessary to use all the tables.
table_60153: "Team" [ text] "Opponent" [ text] "Score" [ text] "Venue" [ text] "Round" [ text]
SELECT "Round" FROM table_60153 WHERE "Venue" = 'canberra stadium'
null
general
เกมในสัปดาห์ที่ 13 คือวันที่เท่าไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What was the date of the week 13 game?It is not neccessary to use all the tables.
table_68042: "Week" [ real] "Date" [ text] "Opponent" [ text] "Result" [ text] "Record" [ text] "Attendance" [ text]
SELECT "Date" FROM table_68042 WHERE "Week" = '13'
null
general
คะแนนชนะในงาน Burdine's Invitational เป็นเท่าใด?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
What was the winning score at Burdine's Invitational?It is not neccessary to use all the tables.
table_name_66: winning_score [ VARCHAR] tournament [ VARCHAR]
SELECT winning_score FROM table_name_66 WHERE tournament = "burdine's invitational"
null
general
เวลาแข่งขันของควอเตอร์ที่ 2 (000) และวันที่ 8 พฤศจิกายน พ.ศ. 2514 มีระยะเฉลี่ยกี่หลา ไม่จำเป็นต้องใช้ตารางทั้งหมด
Game time of 2nd quarter (000), and a Date of november 8, 1971 has how many average yards?It is not neccessary to use all the tables.
table_35078: "Date" [ text] "Kicker" [ text] "Opponent" [ text] "Yards" [ real] "Result" [ text]
SELECT AVG("Yards") FROM table_35078 WHERE "Game time" = '2nd quarter (0:00)' AND "Date" = 'november 8, 1971'
null
general
เลือก * จากผู้ใช้โดยที่ Location='Turkey' ไม่จำเป็นต้องใช้ตารางทั้งหมด
Select * from Users where Location='Turkey'.It is not neccessary to use all the tables.
ReviewRejectionReasons: Id [ number] Name [ text] Description [ text] PostTypeId [ number]
SELECT * FROM Users WHERE Location LIKE '%Turkey%' ORDER BY Reputation DESC
null
general
นับจำนวนคนไข้ที่สถานภาพสมรสหย่าร้างและปีที่เข้ารับการรักษาน้อยกว่า 2,120 หรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด
count the number of patients whose marital status is divorced and admission year is less than 2120?It is not neccessary to use all the tables.
diagnoses: subject_id [ text] hadm_id [ text] icd9_code [ text] short_title [ text] long_title [ text]
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic WHERE demographic.marital_status = "DIVORCED" AND demographic.admityear < "2120"
null
general
บันทึกหลังเกม Phoenix คืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is the record after the Phoenix game?It is not neccessary to use all the tables.
table_27723526_13: record [ VARCHAR] team [ VARCHAR]
SELECT record FROM table_27723526_13 WHERE team = "Phoenix"
null
general
AERO 202 พบกันกี่ครั้งต่อสัปดาห์ ?ไม่จำเป็นต้องใช้ตารางทั้งหมด
How many times a week does AERO 202 meet ?It is not neccessary to use all the tables.
course_offering: offering_id [ int] course_id [ int] semester [ int] section_number [ int] start_time [ time] end_time [ time] monday [ varchar] tuesday [ varchar] wednesday [ varchar] thursday [ varchar] friday [ varchar] saturday [ varchar] sunday [ varchar] has_final_project [ varchar] has_final_exam [ varchar] textbook [ varchar] class_address [ varchar] allow_audit [ varchar]
SELECT (SELECT SUM(CASE WHEN DERIVED_TABLEalias0.FRIDAY = 'Y' THEN 1 ELSE 0 END) + SUM(CASE WHEN DERIVED_TABLEalias0.MONDAY = 'Y' THEN 1 ELSE 0 END) + SUM(CASE WHEN DERIVED_TABLEalias0.SATURDAY = 'Y' THEN 1 ELSE 0 END) + SUM(CASE WHEN DERIVED_TABLEalias0.SUNDAY = 'Y' THEN 1 ELSE 0 END) + SUM(CASE WHEN DERIVED_TABLEalias0.THURSDAY = 'Y' THEN 1 ELSE 0 END) + SUM(CASE WHEN DERIVED_TABLEalias0.TUESDAY = 'Y' THEN 1 ELSE 0 END) + DERIVED_FIELDalias6 FROM (SELECT SUM(CASE WHEN DERIVED_TABLEalias0.FRIDAY = 'Y' THEN 1 ELSE 0 END), SUM(CASE WHEN DERIVED_TABLEalias0.MONDAY = 'Y' THEN 1 ELSE 0 END), SUM(CASE WHEN DERIVED_TABLEalias0.SATURDAY = 'Y' THEN 1 ELSE 0 END), SUM(CASE WHEN DERIVED_TABLEalias0.SUNDAY = 'Y' THEN 1 ELSE 0 END), SUM(CASE WHEN DERIVED_TABLEalias0.THURSDAY = 'Y' THEN 1 ELSE 0 END), SUM(CASE WHEN DERIVED_TABLEalias0.TUESDAY = 'Y' THEN 1 ELSE 0 END), SUM(CASE WHEN DERIVED_TABLEalias0.WEDNESDAY = 'Y' THEN 1 ELSE 0 END), COURSE_OFFERING, SEMESTER WHERE COURSEalias0.COURSE_ID = COURSE_OFFERING.COURSE_ID AND COURSEalias0.DEPARTMENT = 'AERO' AND COURSEalias0.NUMBER = 202 AND SEMESTER.SEMESTER = 'WN' AND SEMESTER.SEMESTER_ID = COURSE_OFFERING.SEMESTER AND SEMESTER.YEAR = 2016 LIMIT 1) AS DERIVED_TABLEalias0) AS DERIVED_TABLEalias1
null
general
ตอนที่พวกเขาเล่นบนพื้นดินเหนียว (i) เป็นเกมรุ่นใดและผลลัพธ์เป็นผู้ชนะ? ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
What was the game edition when they played on the clay (i) surface and the outcome was a winner?It is not neccessary to use all the tables.
table_72983: "Outcome" [ text] "Edition" [ real] "Round" [ text] "Surface" [ text] "Opponent" [ text] "Score" [ text]
SELECT "Edition" FROM table_72983 WHERE "Surface" = 'Clay (i)' AND "Outcome" = 'Winner'
null
general
นับคำตอบจากผู้ใช้อันดับต้นๆ ทุกปี คำตอบจากผู้ใช้อันดับต้นๆ ในแต่ละปี แบ่งตามเดือน ไม่จำเป็นต้องใช้ตารางทั้งหมด
Count Answers by top users in year by month. Answers by top users in year broken down by monthIt is not neccessary to use all the tables.
ReviewTaskTypes: Id [ number] Name [ text] Description [ text]
SELECT MONTH(p.CreationDate), COUNT(p.Id) FROM Posts AS p WHERE p.PostTypeId = 2 AND YEAR(p.CreationDate) = @Year AND p.OwnerUserId IN (SELECT TOP(1000) AS Id FROM Users ORDER BY Reputation DESC) GROUP BY MONTH(p.CreationDate)
null
general
วันเกิดของ Pananmal Punjabi คืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is the Pananmal Punjabi's date of birth?It is not neccessary to use all the tables.
table_name_81: date_of_birth [ VARCHAR] name [ VARCHAR]
SELECT date_of_birth FROM table_name_81 WHERE name = "pananmal punjabi"
null
general
ผู้ป่วย 13841 จะรับประทาน tpn d5.0 ครั้งแรกเมื่อใดจนถึงเมื่อ 386 วันที่แล้ว?ไม่จำเป็นต้องใช้ตารางทั้งหมด
when is patient 13841's tpn d5.0 intake the first time until 386 days ago?It is not neccessary to use all the tables.
diagnoses_icd: row_id [ number] subject_id [ number] hadm_id [ number] icd9_code [ text] charttime [ time]
SELECT inputevents_cv.charttime FROM inputevents_cv WHERE inputevents_cv.icustay_id IN (SELECT icustays.icustay_id FROM icustays WHERE icustays.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 13841)) AND inputevents_cv.itemid IN (SELECT d_items.itemid FROM d_items WHERE d_items.label = 'tpn d5.0' AND d_items.linksto = 'inputevents_cv') AND DATETIME(inputevents_cv.charttime) <= DATETIME(CURRENT_TIME(), '-386 day') ORDER BY inputevents_cv.charttime LIMIT 1
null
general
เกมนี้คะแนนเท่าไหร่ถึง 96 แต้ม?ไม่จำเป็นที่จะต้องใช้ทุกโต๊ะ
What was the score of the game with 96 points?It is not neccessary to use all the tables.
table_38037: "Game" [ real] "March" [ real] "Opponent" [ text] "Score" [ text] "Record" [ text] "Points" [ real]
SELECT "Score" FROM table_38037 WHERE "Points" = '96'
null
general
แสดงให้ฉันดูเกี่ยวกับการแจกแจงของ date_address_to และจำนวน date_address_to bin date_address_to ตามวันในแผนภูมิแท่ง ไม่จำเป็นต้องใช้ตารางทั้งหมด
Show me about the distribution of date_address_to and the amount of date_address_to bin date_address_to by weekday in a bar chart.It is not neccessary to use all the tables.
Students: student_id [ INTEGER] address_id [ INTEGER] first_name [ VARCHAR(80)] middle_name [ VARCHAR(40)] last_name [ VARCHAR(40)] cell_mobile_number [ VARCHAR(40)] email_address [ VARCHAR(40)] date_first_rental [ DATETIME] date_left_university [ DATETIME] other_student_details [ VARCHAR(255)]
SELECT date_address_to, COUNT(date_address_to) FROM Student_Addresses ORDER BY monthly_rental DESC
null
general
สำหรับพนักงานทุกคนที่มีตัวอักษร D หรือ S ในชื่อ ให้ค้นหา Hire_date และผลรวมของถังเงินเดือน Hire_date ตามวันทำงาน แล้วแสดงภาพด้วยแผนภูมิแท่ง ไม่จำเป็นต้องใช้ตารางทั้งหมด
For all employees who have the letters D or S in their first name, find hire_date and the sum of salary bin hire_date by weekday, and visualize them by a bar chart.It is not neccessary to use all the tables.
jobs: JOB_ID [ varchar(10)] JOB_TITLE [ varchar(35)] MIN_SALARY [ decimal(60)] MAX_SALARY [ decimal(60)]
SELECT HIRE_DATE, SUM(SALARY) FROM employees WHERE FIRST_NAME LIKE '%D%' OR FIRST_NAME LIKE '%S%'
null
general
แต่ละบทบาทมีพนักงานกี่คน? ลงจุดแผนภูมิวงกลม ไม่จำเป็นต้องใช้ตารางทั้งหมด
How many employees does each role have? Plot a pie chart.It is not neccessary to use all the tables.
Ref_Document_Types: document_type_code [ CHAR(15)] document_type_description [ VARCHAR(255)]
SELECT role_description, COUNT(*) FROM Roles AS T1 JOIN Employees AS T2 ON T1.role_code = T2.role_code GROUP BY T2.role_code
null
general
ผู้ป่วยที่มีเชื้อชาติเป็นคนผิวสี/แอฟริกันอเมริกันและประเภทยาเป็นฐานมีจำนวนเท่าใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด
what is the number of patients whose ethnicity is black/african american and drug type is base?It is not neccessary to use all the tables.
prescriptions: subject_id [ text] hadm_id [ text] icustay_id [ text] drug_type [ text] drug [ text] formulary_drug_cd [ text] route [ text] drug_dose [ text]
SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN prescriptions ON demographic.hadm_id = prescriptions.hadm_id WHERE demographic.ethnicity = "BLACK/AFRICAN AMERICAN" AND prescriptions.drug_type = "BASE"
null
general
ไดรเวอร์ใดที่มีหมายเลขกริดเป็น 10?ไม่จำเป็นต้องใช้ตารางทั้งหมด
Which driver had a grid number of 10?It is not neccessary to use all the tables.
table_name_11: driver [ VARCHAR] grid [ VARCHAR]
SELECT driver FROM table_name_11 WHERE grid = 10
null
general
นับจำนวนโปรแกรม ไม่จำเป็นต้องใช้ทุกตาราง
Count the number of programs.It is not neccessary to use all the tables.
program: program_id [ number] name [ text] origin [ text] launch [ number] owner [ text]
SELECT COUNT(*) FROM program
null
general
นิกายใดมีอัตรากำไรสูงสุด ?ไม่จำเป็นต้องใช้ตารางทั้งหมด
which denomination has the highest margin ?It is not neccessary to use all the tables.
table_203_857: id [ number] "denomination" [ text] "1870" [ text] "1880" [ text] "1890" [ text] "1900" [ text] "1910" [ text] "1920" [ text] "1930" [ text] "1941" [ text] "1949" [ text] "2001" [ text] "2011" [ text]
SELECT "denomination" FROM table_203_857 ORDER BY "1870" DESC LIMIT 1
null
general
มีหลักสูตรระดับ 400 หลักสูตรในช่วงฤดูใบไม้ร่วงหรือฤดูหนาวหรือไม่ ไม่จำเป็นต้องใช้ทุกตาราง
Are there any 400 -level courses available in the Fall or Winter ?It is not neccessary to use all the tables.
offering_instructor: offering_instructor_id [ int] offering_id [ int] instructor_id [ int]
SELECT DISTINCT course.department, course.name, course.number, semester.semester FROM course, course_offering, semester WHERE ((semester.semester = 'FA' AND semester.year = 2016) OR (semester.semester = 'WN' AND semester.year = 2017)) AND course.course_id = course_offering.course_id AND course.department = 'department0' AND course.number BETWEEN 400 AND 400 + 100 AND semester.semester_id = course_offering.semester
null
general
ลูกค้าที่มีชื่อ 'Meaghan' เปิดบัญชีทั้งหมดกี่บัญชีในแต่ละวัน จัดเก็บบัญชีที่เปิดในแต่ละวันในแผนภูมิแท่ง และเรียงลำดับแกน y จากมากไปน้อย ไม่จำเป็นต้องใช้ตารางทั้งหมด
How many accounts are opened in each day for all accounts by the customer with first name 'Meaghan' ? Bin the account open day by weekday in a bar chart, and order y-axis in descending order.It is not neccessary to use all the tables.
Orders: order_id [ INTEGER] customer_id [ INTEGER] date_order_placed [ DATETIME] order_details [ VARCHAR(255)]
SELECT date_account_opened, COUNT(date_account_opened) FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = 'Meaghan' ORDER BY COUNT(date_account_opened) DESC
null
general
จำนวนกำไรเป็นพันล้านสำหรับบริษัทที่มีมูลค่าตลาด 204.9 พันล้านเป็นเท่าใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด
what is the amount of profits in billions for companies with a market value of 204.9 billion?It is not neccessary to use all the tables.
table_72826: "Rank" [ real] "Company" [ text] "Headquarters" [ text] "Industry" [ text]
SELECT "Profits (billion $)" FROM table_72826 WHERE "Market Value (billion $)" = '204.9'
null
general
ค้นหาชื่อผู้ใช้ที่มี ` ` หรือ ` ` ไม่จำเป็นต้องใช้ตารางทั้งหมด
Find username which contains ` ` or ` `.It is not neccessary to use all the tables.
SuggestedEdits: Id [ number] PostId [ number] CreationDate [ time] ApprovalDate [ time] RejectionDate [ time] OwnerUserId [ number] Comment [ text] Text [ text] Title [ text] Tags [ text] RevisionGUID [ other]
SELECT Id, DisplayName FROM Users WHERE DisplayName LIKE '% %' OR DisplayName LIKE '% %' OR DisplayName LIKE '% %'
null
general
ประเทศใดมีคะแนน 79-68-74=212?ไม่จำเป็นต้องใช้ตารางทั้งหมด
Which Country has a Score of 79-68-74=212?It is not neccessary to use all the tables.
table_name_49: country [ VARCHAR] score [ VARCHAR]
SELECT country FROM table_name_49 WHERE score = 79 - 68 - 74 = 212
null
general
ใครเป็นกัปตันทีมที่มีสนามจุคนได้ 17,800 คน?ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด
Who's captain of the team whose stadium has a capacity of 17800 people?It is not neccessary to use all the tables.
table_23214833_1: team_captain [ VARCHAR] capacity [ VARCHAR]
SELECT team_captain FROM table_23214833_1 WHERE capacity = 17800
null
general
แสดงโพสต์ทั้งหมดตาม User ID ไม่จำเป็นต้องใช้ตารางทั้งหมด
Show all posts based on User ID.It is not neccessary to use all the tables.
PostTags: PostId [ number] TagId [ number]
SELECT * FROM Posts WHERE OwnerUserId = '##userid##'
null
general
Designation คืออะไร เมื่อ วันที่/เวลาเปิดตัว (GMT) คือ 29 มิถุนายน 1972, 0347? ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is Designation, when Launch Date/Time ( GMT ) is 29 June 1972, 0347?It is not neccessary to use all the tables.
table_12860: "Designation" [ text] "Mass" [ text] "Apogee" [ text] "Inclination" [ text]
SELECT "Designation" FROM table_12860 WHERE "Launch date/time ( GMT )" = '29 june 1972, 03:47'
null
general
มีกี่คนที่เล่นชนะ 8 ครั้งและเสียประตูมากกว่า 58 ประตู?ไม่จำเป็นต้องใช้ตารางทั้งหมด
How many played have 8 wins and more than 58 goals against?It is not neccessary to use all the tables.
table_56549: "Position" [ real] "Club" [ text] "Played" [ real] "Points" [ text] "Wins" [ real] "Draws" [ real] "Losses" [ real]
SELECT COUNT("Played") FROM table_56549 WHERE "Wins" = '8' AND "Goals against" > '58'
null
general
รางวัลอะไรเมื่อรายการออกอากาศทาง Ant1 นำเสนอโดย Andreas Mikroutsikos และเปิดตัวเมื่อวันที่ 10 มีนาคม พ.ศ. 2546? ไม่จำเป็นต้องใช้ตารางทั้งหมด
What was the prize when the show was aired on Ant1, was presented by Andreas Mikroutsikos, and was launched on March 10, 2003?It is not neccessary to use all the tables.
table_name_19: the_prize [ VARCHAR] launch_date [ VARCHAR] tv_channel [ VARCHAR] the_presenter [ VARCHAR]
SELECT the_prize FROM table_name_19 WHERE tv_channel = "ant1" AND the_presenter = "andreas mikroutsikos" AND launch_date = "march 10, 2003"
null
general
ตั้งชื่อ D 44 เมื่อมี D 40 เป็น r 16 ไม่จำเป็นต้องใช้ตารางทั้งหมด
Name the D 44 when it has a D 40 of r 16It is not neccessary to use all the tables.
table_70950:
SELECT "D 44 +" FROM table_70950 WHERE "D 40 \u221a" = 'r 16'
null
general
พวกเขาเข้าร่วมการแข่งขันกีฬาโอลิมปิกกี่ครั้ง ?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด
how many times did they participate in the olympic games ?It is not neccessary to use all the tables.
table_203_28: id [ number] "year" [ number] "competition" [ text] "venue" [ text] "position" [ text] "event" [ text] "notes" [ text]
SELECT COUNT(*) FROM table_203_28 WHERE "competition" = 'olympic games'
null
general
ตั้งชื่ออายุขั้นต่ำ 40-49ไม่จำเป็นต้องใช้ตารางทั้งหมด
Name the least age 40-49It is not neccessary to use all the tables.
table_169693_1: age_40_49 [ INTEGER]
SELECT MIN(age_40_49) FROM table_169693_1
null
general
รายชื่อรายวิชาทั้งหมดเรียงตามชื่อเรื่องและหน่วยกิต ไม่จำเป็นต้องใช้ตารางทั้งหมด
List the names of all courses ordered by their titles and credits.It is not neccessary to use all the tables.
course: title [ VARCHAR] credits [ VARCHAR]
SELECT title FROM course ORDER BY title, credits
null
general
มีสิ่งมีชีวิตใดบ้างที่พบจนถึงปี 2103 ในระหว่างการทดสอบทางจุลชีววิทยาอื่นครั้งแรกของผู้ป่วย 031-22988 หรือไม่ไม่จำเป็นต้องใช้ตารางทั้งหมด
has there been any organism found until 2103 during the first other microbiology test of patient 031-22988?It is not neccessary to use all the tables.
diagnosis: diagnosisid [ number] patientunitstayid [ number] diagnosisname [ text] diagnosistime [ time] icd9code [ text]
SELECT COUNT(*) > 0 FROM microlab WHERE microlab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '031-22988')) AND microlab.culturesite = 'other' AND STRFTIME('%y', microlab.culturetakentime) <= '2103' ORDER BY microlab.culturetakentime LIMIT 1
null
general
ยาสี่ชนิดที่พบบ่อยที่สุดที่จ่ายให้กับผู้ป่วยชายอายุ 30 ปีในเดือนเดียวกันหลังจากได้รับการวินิจฉัยว่าติดเชื้อ nb obsrv ตั้งแต่ 6 ปีที่แล้ว? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด
what were the four most frequent drugs that were prescribed to male patients of the age 30s in the same month after they had been diagnosed with nb obsrv suspct infect since 6 years ago?It is not neccessary to use all the tables.
microbiologyevents: row_id [ number] subject_id [ number] hadm_id [ number] charttime [ time] spec_type_desc [ text] org_name [ text]
SELECT t3.drug FROM (SELECT t2.drug, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM (SELECT admissions.subject_id, diagnoses_icd.charttime FROM diagnoses_icd JOIN admissions ON diagnoses_icd.hadm_id = admissions.hadm_id WHERE diagnoses_icd.icd9_code = (SELECT d_icd_diagnoses.icd9_code FROM d_icd_diagnoses WHERE d_icd_diagnoses.short_title = 'nb obsrv suspct infect') AND DATETIME(diagnoses_icd.charttime) >= DATETIME(CURRENT_TIME(), '-6 year')) AS t1 JOIN (SELECT admissions.subject_id, prescriptions.drug, prescriptions.startdate FROM prescriptions JOIN admissions ON prescriptions.hadm_id = admissions.hadm_id WHERE admissions.subject_id IN (SELECT patients.subject_id FROM patients WHERE patients.gender = 'm') AND admissions.age BETWEEN 30 AND 39 AND DATETIME(prescriptions.startdate) >= DATETIME(CURRENT_TIME(), '-6 year')) AS t2 ON t1.subject_id = t2.subject_id WHERE t1.charttime < t2.startdate AND DATETIME(t1.charttime, 'start of month') = DATETIME(t2.startdate, 'start of month') GROUP BY t2.drug) AS t3 WHERE t3.c1 <= 4
null
general
การประมาณจำนวนประชากรในสถานที่ซึ่งมี GDP อยู่ที่ 18,496 ล้านยูโรคือเท่าไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด
What is the population estimate for the place that gad a 18496 million euro gdp?It is not neccessary to use all the tables.
table_16241: "Province" [ text] "Density" [ text]
SELECT "Population (2004 estimate)" FROM table_16241 WHERE "GDP (2003, PPS in mil. \u20ac )" = '18496'
null
general
2006 07 Pts ใดที่มี 2007 08 Pts เป็น 53 และ 2005 06 Pts มากกว่า 51 ไม่จำเป็นต้องใช้ตารางทั้งหมด
Which 2006 07 Pts has a 2007 08 Pts of 53, and a 2005 06 Pts larger than 51?It is not neccessary to use all the tables.
table_13023: "Team" [ text]
SELECT MAX("2006\u201307 Pts") FROM table_13023 WHERE "2007\u201308 Pts" = '53' AND "2005\u201306 Pts" > '51'
null
general
บอกฉันว่าผู้รับสิทธิ์สำหรับ san ysidro ไม่จำเป็นต้องใช้ตารางทั้งหมด
Tell me the Grantee for san ysidroIt is not neccessary to use all the tables.
table_name_34: grantee [ VARCHAR] concession [ VARCHAR]
SELECT grantee FROM table_name_34 WHERE concession = "san ysidro"
null
general