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 |
---|---|---|---|---|---|
สิ่งหนึ่งที่ผู้ป่วย 86792 ได้รับการวินิจฉัยในการไปโรงพยาบาลครั้งสุดท้ายเป็นครั้งสุดท้ายคืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is the one thing patient 86792 was diagnosed with on the last hospital visit for the last time?It is not neccessary to use all the tables. | d_icd_diagnoses: row_id [ number] icd9_code [ text] short_title [ text] long_title [ text] | SELECT d_icd_diagnoses.short_title FROM d_icd_diagnoses WHERE d_icd_diagnoses.icd9_code IN (SELECT diagnoses_icd.icd9_code FROM diagnoses_icd WHERE diagnoses_icd.hadm_id IN (SELECT admissions.hadm_id FROM admissions WHERE admissions.subject_id = 86792 AND NOT admissions.dischtime IS NULL ORDER BY admissions.admittime DESC LIMIT 1) ORDER BY diagnoses_icd.charttime DESC LIMIT 1) | null | general |
มกราคมใดที่ต่ำที่สุดที่มีคู่ต่อสู้ของเสือดำฟลอริดา และแต้มน้อยกว่า 59?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which January is the lowest one that has an Opponent of florida panthers, and Points smaller than 59?It is not neccessary to use all the tables. | table_36725: "Game" [ real] "January" [ real] "Opponent" [ text] "Score" [ text] "Record" [ text] "Points" [ real] | SELECT MIN("January") FROM table_36725 WHERE "Opponent" = 'florida panthers' AND "Points" < '59' | null | general |
บริษัทบุคคลที่สามแต่ละแห่งจัดหาสินทรัพย์จำนวนเท่าใด แสดงรายการจำนวนและรหัสบริษัท ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many assets does each third party company supply? List the count and the company id.It is not neccessary to use all the tables. | engineer_visits: engineer_visit_id [ number] contact_staff_id [ number] engineer_id [ number] fault_log_entry_id [ number] fault_status [ text] visit_start_datetime [ time] visit_end_datetime [ time] other_visit_details [ text] | SELECT COUNT(*), T1.company_id FROM third_party_companies AS T1 JOIN assets AS T2 ON T1.company_id = T2.supplier_company_id GROUP BY T1.company_id | null | general |
ตัวอย่างการทดสอบสามตัวอย่างที่ให้บ่อยที่สุดแก่ผู้ป่วยที่เคยได้รับการวินิจฉัยว่าเป็นโรคเยื่อหุ้มหัวใจอักเสบจากการหดตัวในการไปโรงพยาบาลครั้งเดียวกันในปีที่แล้วคืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | what were the three specimen tests that were most frequently given to patients that were previously diagnosed with constrictiv pericarditis within the same hospital visit the last year?It is not neccessary to use all the tables. | chartevents: row_id [ number] subject_id [ number] hadm_id [ number] icustay_id [ number] itemid [ number] charttime [ time] valuenum [ number] valueuom [ text] | SELECT t3.spec_type_desc FROM (SELECT t2.spec_type_desc, 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 = 'constrictiv pericarditis') AND DATETIME(diagnoses_icd.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 year')) AS t1 JOIN (SELECT admissions.subject_id, microbiologyevents.spec_type_desc, microbiologyevents.charttime, admissions.hadm_id FROM microbiologyevents JOIN admissions ON microbiologyevents.hadm_id = admissions.hadm_id WHERE DATETIME(microbiologyevents.charttime, 'start of year') = DATETIME(CURRENT_TIME(), 'start of year', '-1 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.spec_type_desc) AS t3 WHERE t3.c1 <= 3 | null | general |
ความจุสูงสุดที่มีการเปลี่ยนแปลงประจำปี 13.14% และจำนวนผู้โดยสารรวมมากกว่า 15,499,462 คืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the highest Capacity that has 13.14% Annual change and Total Passengers larger than 15,499,462?It is not neccessary to use all the tables. | table_42922: "Rank" [ real] "Location" [ text] "Capacity" [ real] | SELECT MAX("Capacity") FROM table_42922 WHERE "Annual change" = '13.14%' AND "Total Passengers" > '15,499,462' | null | general |
การแข่งขันในปี 1994 คืออะไรในกรณีที่มีการจบการแข่งขันด้วย 2R ในปี 1998? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the 1994 finish in the event that had a 1998 finish of 2R?It is not neccessary to use all the tables. | table_name_22: Id [ VARCHAR] | SELECT 1994 FROM table_name_22 WHERE 1998 = "2r" | null | general |
ใครเป็นคนตัดสินใจเมื่อแอตแลนต้าเป็นเจ้าบ้าน?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who made the decision when atlanta was the home team?It is not neccessary to use all the tables. | table_name_33: decision [ VARCHAR] home [ VARCHAR] | SELECT decision FROM table_name_33 WHERE home = "atlanta" | null | general |
ชื่อเล่นของพนักงานชื่อ Janessa และนามสกุล Sawayn คืออะไร?ไม่จำเป็นต้องใช้ทุกโต๊ะ | What is the nickname of staff with first name as Janessa and last name as Sawayn?It is not neccessary to use all the tables. | vehicles: vehicle_id [ number] vehicle_details [ text] | SELECT nickname FROM staff WHERE first_name = "Janessa" AND last_name = "Sawayn" | null | general |
เมื่อครั้งที่ 5 เขตตะวันตกเฉียงใต้ 2 เป็นชายที่ 2 xi ฤดูกาลอะไร?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | When 5th, south western district 2 is the mens 2nd xi what is the season?It is not neccessary to use all the tables. | table_24480: "Season" [ text] | SELECT "Season" FROM table_24480 WHERE "Mens 2nd XI" = '5th, South Western District 2' | null | general |
สถานที่/สถานะของการแข่งขันบนสนามแข่ง Wanneroo คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the location/state of the race on the Wanneroo raceway?It is not neccessary to use all the tables. | table_68360: "Circuit" [ text] "Date" [ text] "Winner" [ text] "Team" [ text] | SELECT "Location / State" FROM table_68360 WHERE "Circuit" = 'wanneroo raceway' | null | general |
เมื่อ Jackie Stewart ทำรอบได้เร็วที่สุด และ Jochen Rindt ครองตำแหน่งโพลโพสิชั่นด้วยยาง D จะเกิดวงจรอะไร?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | When Jackie Stewart had the fastest lap and Jochen Rindt held the pole position with a D tyre, what was the circuit?It is not neccessary to use all the tables. | table_57538: "Race" [ text] "Circuit" [ text] "Date" [ text] "Constructor" [ text] "Tyre" [ text] "Report" [ text] | SELECT "Circuit" FROM table_57538 WHERE "Tyre" = 'd' AND "Pole position" = 'jochen rindt' AND "Fastest lap" = 'jackie stewart' | null | general |
การทดสอบในห้องปฏิบัติการห้ารายการที่พบบ่อยที่สุดจนถึงเมื่อ 2 ปีที่แล้วคืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | what are the five most frequent laboratory tests until 2 years ago?It is not neccessary to use all the tables. | patients: row_id [ number] subject_id [ number] gender [ text] dob [ time] dod [ time] | SELECT d_labitems.label FROM d_labitems WHERE d_labitems.itemid IN (SELECT t1.itemid FROM (SELECT labevents.itemid, DENSE_RANK() OVER (ORDER BY COUNT(*) DESC) AS c1 FROM labevents WHERE DATETIME(labevents.charttime) <= DATETIME(CURRENT_TIME(), '-2 year') GROUP BY labevents.itemid) AS t1 WHERE t1.c1 <= 5) | null | general |
มีฮีโมโกลบิน a1c 6.75 _ 10 %ไม่จำเป็นต้องใช้ทุกตาราง | have hemoglobin a1c 6.75 _ 10 %It is not neccessary to use all the tables. | table_train_154: "id" [ int] "systolic_blood_pressure_sbp" [ int] "fpg" [ float] "hemoglobin_a1c_hba1c" [ float] "creatinine_clearance_cl" [ float] "diastolic_blood_pressure_dbp" [ int] "NOUSE" [ float] | SELECT * FROM table_train_154 WHERE hemoglobin_a1c_hba1c >= 6.75 AND hemoglobin_a1c_hba1c <= 10 | null | general |
ตั้งชื่อฐานการชุมนุมสำหรับ rallye de france alsaceไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the rally base for rallye de france alsaceIt is not neccessary to use all the tables. | table_23385853_1: rally_base [ VARCHAR] rally_name [ VARCHAR] | SELECT rally_base FROM table_23385853_1 WHERE rally_name = "Rallye de France Alsace" | null | general |
เพลงใดบ้างที่เกี่ยวข้องกับศิลปินอายุ 32 ปีขึ้นไป? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What are the songs in volumes associated with the artist aged 32 or older?It is not neccessary to use all the tables. | volume: Song [ VARCHAR] Artist_ID [ VARCHAR] | SELECT T2.Song FROM artist AS T1 JOIN volume AS T2 ON T1.Artist_ID = T2.Artist_ID WHERE T1.age >= 32 | null | general |
คู่ต่อสู้คือใครในวันที่ 7 มกราคม?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who was the opponent on January 7?It is not neccessary to use all the tables. | table_name_36: opponent [ VARCHAR] date [ VARCHAR] | SELECT opponent FROM table_name_36 WHERE date = "january 7" | null | general |
ผู้เข้าร่วมการแข่งขันที่ Hoosier Dome เป็นเท่าใด? ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด | What was the Attendance of the Game at Hoosier Dome?It is not neccessary to use all the tables. | table_name_92: attendance [ VARCHAR] game_site [ VARCHAR] | SELECT attendance FROM table_name_92 WHERE game_site = "hoosier dome" | null | general |
แสดงจำนวนรวมจากแต่ละอันดับ และฉันต้องการแสดงรายการจากน้อยไปมากตามแกน Y ไม่จำเป็นต้องใช้ตารางทั้งหมด | Show the total number from each rank, and I want to list in ascending by the Y-axis.It is not neccessary to use all the tables. | captain: Captain_ID [ int] Name [ text] Ship_ID [ int] age [ text] Class [ text] Rank [ text] | SELECT Rank, COUNT(*) FROM captain GROUP BY Rank ORDER BY COUNT(*) | null | general |
ผู้ใช้ 150 อันดับแรกจากเนเธอร์แลนด์ ผู้ใช้ SO 150 อันดับแรกจากจีนไม่จำเป็นต้องใช้ตารางทั้งหมด | Top 150 users from Nethelands. Top 150 SO users from ChinaIt is not neccessary to use all the tables. | CloseReasonTypes: Id [ number] Name [ text] Description [ text] | SELECT ROW_NUMBER() OVER (ORDER BY Reputation DESC) AS "#", Id AS "user_link", Reputation, Location FROM Users WHERE LOWER(Location) LIKE '%holland%' ORDER BY Reputation DESC LIMIT 150 | null | general |
เกมใดที่เล่นโดยทีมมิลวอกีไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Which game was played by team milwaukeeIt is not neccessary to use all the tables. | table_17340355_6: game [ VARCHAR] team [ VARCHAR] | SELECT game FROM table_17340355_6 WHERE team = "Milwaukee" | null | general |
จำนวนเงินสูงสุดสำหรับ 9 เหรียญทองแดง และทั้งหมดน้อยกว่า 27 คือเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด | What's the highest number of silver for 9 bronze and less than 27 total?It is not neccessary to use all the tables. | table_60025: "Rank" [ text] "Nation" [ text] "Gold" [ real] "Silver" [ real] "Bronze" [ real] "Total" [ real] | SELECT MAX("Silver") FROM table_60025 WHERE "Bronze" = '9' AND "Total" < '27' | null | general |
วันที่ 27 พฤศจิกายน พ.ศ. 2520 ในสัปดาห์ใด ไม่จำเป็นต้องใช้ตารางทั้งหมด | In what week was November 27, 1977?It is not neccessary to use all the tables. | table_13259034_2: week [ INTEGER] date [ VARCHAR] | SELECT MAX(week) FROM table_13259034_2 WHERE date = "November 27, 1977" | null | general |
ซึ่งเป็นภาพยนตร์เรื่องแรกในภาษากันนาดา ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | which was the first film in kannada ?It is not neccessary to use all the tables. | table_204_546: id [ number] "year" [ number] "film" [ text] "song" [ text] "language" [ text] | SELECT "film" FROM table_204_546 WHERE "language" = 'kannada' ORDER BY "year" LIMIT 1 | null | general |
ผลรวมของจำนวนผู้สมัครคือเท่าใด เมื่อจำนวนคะแนนเสียงเลือกตั้งน้อยกว่า 25,643,309 เมื่อผู้นำคือมาซาโยชิ ฮิระ และเมื่อการเลือกตั้งเกิดขึ้นก่อนปี 1979 ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | What is the sum of # Of Candidates, when # of Constituency Votes is less than 25,643,309, when Leader is Masayoshi hira, and when Election is before 1979?It is not neccessary to use all the tables. | table_50553: "Election" [ real] "Leader" [ text] | SELECT SUM("# of candidates") FROM table_50553 WHERE "# of Constituency votes" < '25,643,309' AND "Leader" = 'masayoshi ōhira' AND "Election" < '1979' | null | general |
ค่าโดยสาร COACH จากลอสแอนเจลิสไปชาร์ล็อตต์เช้าวันจันทร์ราคาเท่าไหร่ไม่จำเป็นต้องใช้ตารางทั้งหมด | what are the COACH fares from LOS ANGELES to CHARLOTTE monday morningIt is not neccessary to use all the tables. | flight_leg: flight_id [ int] leg_number [ int] leg_flight [ int] | SELECT DISTINCT fare.fare_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day AS DATE_DAY_0, date_day AS DATE_DAY_1, days AS DAYS_0, days AS DAYS_1, fare, fare_basis AS FARE_BASIS_0, fare_basis AS FARE_BASIS_1, flight, flight_fare WHERE (((CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'CHARLOTTE' AND DATE_DAY_1.day_number = 21 AND DATE_DAY_1.month_number = 2 AND DATE_DAY_1.year = 1991 AND DAYS_1.day_name = DATE_DAY_1.day_name AND flight.flight_days = DAYS_1.days_code AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'LOS ANGELES' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code) AND DATE_DAY_0.day_number = 21 AND DATE_DAY_0.month_number = 2 AND DATE_DAY_0.year = 1991 AND DAYS_0.day_name = DATE_DAY_0.day_name AND FARE_BASIS_1.basis_days = DAYS_0.days_code AND fare.fare_basis_code = FARE_BASIS_1.fare_basis_code AND flight_fare.fare_id = fare.fare_id AND flight.departure_time BETWEEN 0 AND 1200 AND flight.flight_id = flight_fare.flight_id) AND FARE_BASIS_0.class_type = 'COACH' AND fare.fare_basis_code = FARE_BASIS_0.fare_basis_code | null | general |
ค่าสำหรับรายการใหม่คืออะไร เมื่อค่าสำหรับการแข่งขันน้อยกว่า 16 และเมื่อค่าสำหรับไม้กอล์ฟคือ 4 2? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | What is the value for New entries, when the value for Fixtures is less than 16, and when the value for Clubs is 4 2?It is not neccessary to use all the tables. | table_66854: "Round" [ text] "Fixtures" [ real] "Clubs" [ text] | SELECT "New entries" FROM table_66854 WHERE "Fixtures" < '16' AND "Clubs" = '4 → 2' | null | general |
คุณบิน 747 จากบัลติมอร์ไปซานฟรานซิสโกหรือไม่ ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | do you fly a 747 from BALTIMORE to SAN FRANCISCOIt is not neccessary to use all the tables. | compartment_class: compartment [ varchar] class_type [ varchar] | SELECT DISTINCT flight.flight_id FROM aircraft, airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, equipment_sequence, flight WHERE (aircraft.basic_type = '747' AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SAN FRANCISCO' AND equipment_sequence.aircraft_code = aircraft.aircraft_code AND flight.aircraft_code_sequence = equipment_sequence.aircraft_code_sequence AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'BALTIMORE' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code | null | general |
กระทู้ที่แย่ที่สุด (ตามการโหวต) ไม่จำเป็นต้องใช้ตารางทั้งหมด | Worst Posts (according to votes).It is not neccessary to use all the tables. | PostTags: PostId [ number] TagId [ number] | SELECT Score, Id AS "post_link" FROM Posts WHERE PostTypeId = 1 ORDER BY Score LIMIT 10 | null | general |
นับจำนวนบริการตามบริการ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Count the number of services by services.It is not neccessary to use all the tables. | station: id [ int] network_name [ text] services [ text] local_authority [ text] | SELECT services, COUNT(services) FROM station GROUP BY services | null | general |
เกมปะทะกระบี่ควายอยู่ที่ไหน?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Where was the game against the buffalo sabres?It is not neccessary to use all the tables. | table_48878: "Game" [ real] "Date" [ text] "Opponent" [ text] "Score" [ text] "Location" [ text] "Attendance" [ real] "Record" [ text] "Points" [ real] | SELECT "Location" FROM table_48878 WHERE "Opponent" = 'buffalo sabres' | null | general |
ความอัปยศอะไรที่มีคะแนนมากกว่า 81?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What hame has points larger than 81?It is not neccessary to use all the tables. | table_name_44: game [ INTEGER] points [ INTEGER] | SELECT SUM(game) FROM table_name_44 WHERE points > 81 | null | general |
ระบุวิธีที่เป็นไปได้ทั้งหมดในการไปยังสถานที่ท่องเที่ยว พร้อมด้วยจำนวนสถานที่ท่องเที่ยวที่เข้าถึงได้ด้วยวิธีเหล่านี้โดยใช้แผนภูมิวงกลม ไม่จำเป็นต้องใช้ตารางทั้งหมด | List all the possible ways to get to attractions, together with the number of attractions accessible by these methods by a pie chart.It is not neccessary to use all the tables. | Royal_Family: Royal_Family_ID [ INTEGER] Royal_Family_Details [ VARCHAR(255)] | SELECT How_to_Get_There, COUNT(*) FROM Tourist_Attractions GROUP BY How_to_Get_There | null | general |
ฉันขอสมัครเรียน 100 ระดับในช่วงภาคเรียนฤดูใบไม้ผลิหรือฤดูร้อนได้ไหม ไม่จำเป็นต้องใช้ทุกตาราง | May I sign up for 100 -level classes in Spring or Summer term ?It is not neccessary to use all the tables. | student: student_id [ int] lastname [ varchar] firstname [ varchar] program_id [ int] declare_major [ varchar] total_credit [ int] total_gpa [ float] entered_as [ varchar] admit_term [ int] predicted_graduation_semester [ int] degree [ varchar] minor [ varchar] internship [ varchar] | SELECT DISTINCT COURSEalias0.department, COURSEalias0.name, COURSEalias0.number, SEMESTERalias0.semester FROM (SELECT course_id FROM student_record WHERE earn_credit = 'Y' AND student_id = 1) AS DERIVED_TABLEalias0, course AS COURSEalias0, course_offering AS COURSE_OFFERINGalias0, semester AS SEMESTERalias0 WHERE COURSEalias0.course_id = COURSE_OFFERINGalias0.course_id AND NOT COURSEalias0.course_id IN (DERIVED_TABLEalias0.course_id) AND NOT COURSEalias0.course_id IN (SELECT DISTINCT COURSE_PREREQUISITEalias0.course_id FROM course_prerequisite AS COURSE_PREREQUISITEalias0 WHERE NOT COURSE_PREREQUISITEalias0.pre_course_id IN (DERIVED_TABLEalias0.course_id)) AND COURSEalias0.department = 'EECS' AND COURSEalias0.number BETWEEN 100 AND 100 + 100 AND SEMESTERalias0.semester IN ('SP', 'SS', 'SU') AND SEMESTERalias0.semester_id = COURSE_OFFERINGalias0.semester AND SEMESTERalias0.year = 2016 | null | general |
ผลการแข่งขันเพลย์ออฟของทีมใน APSL ในปี 1992 เป็นอย่างไรบ้าง? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What was the playoff result for theteam in the apsl in 1992?It is not neccessary to use all the tables. | table_17373: "Year" [ real] "Division" [ text] "League" [ text] "Playoffs" [ text] | SELECT "Playoffs" FROM table_17373 WHERE "League" = 'APSL' AND "Year" = '1992' | null | general |
รหัสผู้เข้าร่วมที่ชัดเจนซึ่งเข้าร่วมกิจกรรมใดๆ คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What are all the distinct participant ids who attended any events?It is not neccessary to use all the tables. | participants_in_Events: participant_id [ VARCHAR] | SELECT COUNT(DISTINCT participant_id) FROM participants_in_Events | null | general |
จำนวนเหรียญเงินต่ำสุดของประเทศที่ไม่ได้อยู่ในอันดับที่ 1 คือเท่าไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the lowest number of silver owned by a nation that is not ranked number 1?It is not neccessary to use all the tables. | table_name_41: silver [ INTEGER] rank [ INTEGER] | SELECT MIN(silver) FROM table_name_41 WHERE rank < 1 | null | general |
ตั้งชื่อเพลงสำหรับวาดน้อยกว่า 7 และศิลปินของ martin & johannes ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the song for draw less than 7 and artists of martin & johannesIt is not neccessary to use all the tables. | table_68966: "Draw" [ real] "Country" [ text] "Language" [ text] "Artist" [ text] "Song" [ text] "Result" [ text] | SELECT "Song" FROM table_68966 WHERE "Draw" < '7' AND "Artist" = 'martin & johannes' | null | general |
ใครเป็นคนสร้างสถิติในการวิ่ง 500 เมตร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Who set the record in the 500 metres event?It is not neccessary to use all the tables. | table_9223: "Event" [ text] "Time" [ text] "Name" [ text] "Nation" [ text] "Games" [ text] "Date" [ text] | SELECT "Name" FROM table_9223 WHERE "Event" = '500 metres' | null | general |
จำนวนเหรียญรวมสูงสุดของประเทศที่มีน้อยกว่า 1 เหรียญทองแดง และเหรียญเงินน้อยกว่า 0 เหรียญคือเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the highest total number of medals of the nation with less than 1 bronzes and less than 0 silver medals?It is not neccessary to use all the tables. | table_name_21: total [ INTEGER] bronze [ VARCHAR] silver [ VARCHAR] | SELECT MAX(total) FROM table_name_21 WHERE bronze < 1 AND silver < 0 | null | general |
เขาจะชนะได้กี่ครั้งเมื่อเขาเริ่มต้นที่ 10? ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many wins does he get when he starts at 10?It is not neccessary to use all the tables. | table_24562: "Year" [ real] "Starts" [ real] "Wins" [ real] "Poles" [ real] "Winnings" [ text] "Position" [ text] "Team(s)" [ text] | SELECT "Wins" FROM table_24562 WHERE "Starts" = '10' | null | general |
เครื่องยนต์ฮอนด้าปีแรกสุดที่มีเลข 4 คือปีใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the earliest year of the Honda Engine with a finish of 4?It is not neccessary to use all the tables. | table_42281: "Year" [ real] "Chassis" [ text] "Engine" [ text] "Start" [ text] "Finish" [ real] "Team" [ text] | SELECT MIN("Year") FROM table_42281 WHERE "Engine" = 'honda' AND "Finish" = '4' | null | general |
FA Trophys ที่ต่ำที่สุดรายการใดที่เกี่ยวข้องกับสโมสร Forest Green Rovers เมื่อหมายเลขเพลย์ออฟมากกว่า 0?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which of the lowest FA Trophys involved the Forest Green Rovers club when the play-offs number was bigger than 0?It is not neccessary to use all the tables. | table_77797: "Player" [ text] "Club" [ text] "League" [ real] "Play-offs" [ real] "Total" [ real] | SELECT MIN("FA Trophy") FROM table_77797 WHERE "Club" = 'forest green rovers' AND "Play-offs" > '0' | null | general |
ผลรวมของการจับรางวัลสำหรับบายทั้งหมดที่มากกว่า 0 เป็นเท่าใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the sum of draws for all byes larger than 0?It is not neccessary to use all the tables. | table_59315: "Wins" [ real] "Byes" [ real] "Losses" [ real] "Draws" [ real] "Against" [ real] | SELECT SUM("Draws") FROM table_59315 WHERE "Byes" > '0' | null | general |
มหาวิทยาลัยเจ้าภาพแห่งใดตั้งอยู่ใน Missoula?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which host university is based in Missoula?It is not neccessary to use all the tables. | table_name_40: host [ VARCHAR] city [ VARCHAR] | SELECT host FROM table_name_40 WHERE city = "missoula" | null | general |
คุณแม่ให้นมบุตรไม่จำเป็นต้องใช้โต๊ะทั้งหมด | nursing mothersIt is not neccessary to use all the tables. | table_train_261: "id" [ int] "allergy_to_biological_products" [ bool] "renal_disease" [ bool] "bursing_mothers" [ bool] "metabolic_bone_disease" [ bool] "liver_disease" [ bool] "allergy_to_drug" [ bool] "alcohol_abuse" [ bool] "drug_abuse" [ bool] "NOUSE" [ float] | SELECT * FROM table_train_261 WHERE bursing_mothers = 1 | null | general |
ตั้งชื่อศิลปินสำหรับโทรทัศน์ 1,595 รายการไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the artist for 1595 televotesIt is not neccessary to use all the tables. | table_21378339_5: artist [ VARCHAR] televotes [ VARCHAR] | SELECT artist FROM table_21378339_5 WHERE televotes = 1595 | null | general |
การแข่งขันในปี 2546 คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What was the competition in 2003?It is not neccessary to use all the tables. | table_69314: "Year" [ real] "Competition" [ text] "Venue" [ text] "Position" [ text] "Notes" [ text] | SELECT "Competition" FROM table_69314 WHERE "Year" = '2003' | null | general |
พล็อตแผนภูมิกระจาย รหัสบุคคลโดยการฉก ไม่จำเป็นต้องใช้ตารางทั้งหมด | Plot a scatter chart, people id by snatch.It is not neccessary to use all the tables. | body_builder: Body_Builder_ID [ int] People_ID [ int] Snatch [ real] Clean_Jerk [ real] Total [ real] | SELECT People_ID, Snatch FROM body_builder | null | general |
Bronze คืออะไร เมื่อ Notes อยู่ที่ '6.7 กม., 22 คอนโทรล'?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is Bronze, when Notes is '6.7km, 22controls'?It is not neccessary to use all the tables. | table_name_2: bronze [ VARCHAR] notes [ VARCHAR] | SELECT bronze FROM table_name_2 WHERE notes = "6.7km, 22controls" | null | general |
ค้นหาคำอธิบายหมวดหมู่ผลิตภัณฑ์ของหมวดหมู่ผลิตภัณฑ์ด้วยรหัส 'เครื่องเทศ' ไม่จำเป็นต้องใช้ตารางทั้งหมด | Find the product category description of the product category with code 'Spices'.It is not neccessary to use all the tables. | product_characteristics: product_id [ number] characteristic_id [ number] product_characteristic_value [ text] | SELECT product_category_description FROM ref_product_categories WHERE product_category_code = "Spices" | null | general |
สถานที่ใดมีรายรับรวม (2012) อยู่ที่ 179,712 ดอลลาร์ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which Venue has a Gross Revenue (2012) of $179,712?It is not neccessary to use all the tables. | table_68533: "Venue" [ text] "City" [ text] | SELECT "Venue" FROM table_68533 WHERE "Gross Revenue (2012)" = '$179,712' | null | general |
ปี 2550 ใดมี A ปี 2553 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which 2007 has a 2010 of A?It is not neccessary to use all the tables. | table_name_92: Id [ VARCHAR] | SELECT 2007 FROM table_name_92 WHERE 2010 = "a" | null | general |
รับความคิดเห็นจากผู้ใช้โพสต์ทั้งหมดสำหรับแท็กเฉพาะ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Get All User of posts comments for a particular tag.It is not neccessary to use all the tables. | ReviewTaskTypes: Id [ number] Name [ text] Description [ text] | SELECT * FROM Users WHERE Id IN (SELECT UserId FROM Comments WHERE PostId IN (SELECT Id FROM Posts WHERE Tags LIKE '%aws-lambda%')) | null | general |
ตั้งชื่อจุดไอริชสำหรับบันทึก 23-1 ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the irish points for 23-1 recordIt is not neccessary to use all the tables. | table_22875369_3: irish_points [ VARCHAR] record [ VARCHAR] | SELECT irish_points FROM table_22875369_3 WHERE record = "23-1" | null | general |
แสดงจำนวนผู้ป่วยหญิงที่เข้ารับการผ่าตัดหัวใจห้องบนเต้นผิดจังหวะ ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | show me the number of female patients who underwent atrial cardioversion.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 COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.gender = "F" AND procedures.long_title = "Atrial cardioversion" | null | general |
วันที่ใดมีภูมิภาคยุโรปและแค็ตตาล็อก 74321 45851 2?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What Date has the Region Europe and a Catalog of 74321 45851 2?It is not neccessary to use all the tables. | table_76207: "Region" [ text] "Date" [ text] "Label" [ text] "Format" [ text] "Catalog" [ text] | SELECT "Date" FROM table_76207 WHERE "Region" = 'europe' AND "Catalog" = '74321 45851 2' | null | general |
การวินิจฉัยครั้งสุดท้ายของผู้ป่วย 027-211129 คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is patient 027-211129's last diagnosis?It is not neccessary to use all the tables. | patient: uniquepid [ text] patienthealthsystemstayid [ number] patientunitstayid [ number] gender [ text] age [ text] ethnicity [ text] hospitalid [ number] wardid [ number] admissionheight [ number] admissionweight [ number] dischargeweight [ number] hospitaladmittime [ time] hospitaladmitsource [ text] unitadmittime [ time] unitdischargetime [ time] hospitaldischargetime [ time] hospitaldischargestatus [ text] | SELECT diagnosis.diagnosisname FROM diagnosis WHERE diagnosis.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '027-211129')) ORDER BY diagnosis.diagnosistime DESC LIMIT 1 | null | general |
ผู้เล่นจาก TPS (ฟินแลนด์) เล่นให้กับทีมใด?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What teams do the players from TPS (Finland) play for?It is not neccessary to use all the tables. | table_1013129_11: nhl_team [ VARCHAR] college_junior_club_team [ VARCHAR] | SELECT nhl_team FROM table_1013129_11 WHERE college_junior_club_team = "TPS (Finland)" | null | general |
ระหว่างวิ่ง 332 สถานที่คือที่ไหน?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | During runs 332, what was the venue?It is not neccessary to use all the tables. | table_name_60: venue [ VARCHAR] runs [ VARCHAR] | SELECT venue FROM table_name_60 WHERE runs = "332" | null | general |
รายการเที่ยวบินวันพุธจากเดนเวอร์ไปบัลติมอร์ที่มาถึงบัลติมอร์ระหว่างเวลา 11.15 น. ถึง 12.45 น. ไม่จำเป็นต้องใช้ตารางทั้งหมด | list the WEDNESDAY flights from DENVER to BALTIMORE arriving in BALTIMORE between 1115 and 1245pmIt is not neccessary to use all the tables. | state: state_code [ text] state_name [ text] country_name [ text] | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, days, flight WHERE (((flight.arrival_time <= 1245 AND flight.arrival_time >= 1115) AND days.day_name = 'WEDNESDAY' AND flight.flight_days = days.days_code) AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'BALTIMORE' AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'DENVER' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code | null | general |
แต้มที่เสียมากกว่า 6, เล่นน้อยกว่า 14 และตำแหน่งมากกว่า 1 คืออะไร ไม่จำเป็นต้องใช้ทุกตาราง | What's the points that has a lost more 6, played less than 14 and a position more than 1?It is not neccessary to use all the tables. | table_79490: "Position" [ real] "Name" [ text] "Played" [ real] "Drawn" [ real] "Lost" [ real] "Points" [ real] | SELECT SUM("Points") FROM table_79490 WHERE "Position" > '1' AND "Lost" > '6' AND "Played" < '14' | null | general |
To par ของ Bob Tway คืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is Bob Tway's To par?It is not neccessary to use all the tables. | table_12519: "Place" [ text] "Player" [ text] "Country" [ text] "Score" [ text] | SELECT "To par" FROM table_12519 WHERE "Player" = 'bob tway' | null | general |
#ตารางดัชนีและขั้นตอนการทำงานชั่วคราว!. #มุมมองและฟังก์ชันชั่วคราวส่งคืนข้อผิดพลาดที่ระบุว่าไม่ได้รับอนุญาต ใช้ผลลัพธ์แบบข้อความเท่านั้น และรวมแผนการดำเนินการเพื่อดูดัชนีที่ถูกใช้ ไม่จำเป็นต้องใช้ตารางทั้งหมด | #Temporary tables, indexes and procedures work!. #Temporary views and functions return errors stating they're not allowed.
Use Text-only results, and include the execution plan to see the index has been used.It is not neccessary to use all the tables. | ReviewRejectionReasons: Id [ number] Name [ text] Description [ text] PostTypeId [ number] | SELECT * FROM Tags | null | general |
เว็บไซต์เกม Miami Orange Bowl และมีผู้เข้าร่วมมากกว่า 49,754 คนเกิดขึ้นในสัปดาห์สูงสุดใด? ไม่จำเป็นต้องใช้ตารางทั้งหมด | Game site of miami orange bowl, and a Attendance larger than 49,754 happened on what highest week?It is not neccessary to use all the tables. | table_name_60: week [ INTEGER] game_site [ VARCHAR] attendance [ VARCHAR] | SELECT MAX(week) FROM table_name_60 WHERE game_site = "miami orange bowl" AND attendance > 49 OFFSET 754 | null | general |
มีนักเขียนจำนวนกี่ตอนที่มีผู้ชม 3.24 ล้านคนในสหรัฐอเมริกา?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many episodes by different writers were seen by 3.24 million people in the US?It is not neccessary to use all the tables. | table_1839: "Title" [ text] | SELECT COUNT("Written by") FROM table_1839 WHERE "U.S. viewers (million)" = '3.24' | null | general |
ผู้ป่วยที่อายุน้อยกว่า 70 ปี และรหัสขั้นตอน icd9 คือ 3532 มีกี่ราย ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many patients whose age is less than 70 and procedure icd9 code is 3532?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 COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.age < "70" AND procedures.icd9_code = "3532" | null | general |
คนไข้ที่อายุน้อยกว่า 45 ปี และทำการรักษาชื่อยาวว่าปิดผิวหนังและเนื้อเยื่อใต้ผิวหนังบริเวณอื่นมีกี่คน?ไม่จำเป็นต้องใช้ตารางทั้งหมด | how many patients whose age is less than 45 and procedure long title is closure of skin and subcutaneous tissue of other sites?It is not neccessary to use all the tables. | procedures: subject_id [ text] hadm_id [ text] icd9_code [ text] short_title [ text] long_title [ text] | SELECT COUNT(DISTINCT demographic.subject_id) FROM demographic INNER JOIN procedures ON demographic.hadm_id = procedures.hadm_id WHERE demographic.age < "45" AND procedures.long_title = "Closure of skin and subcutaneous tissue of other sites" | null | general |
แผนภูมิแท่งแสดงการกระจายของ Sex และผลรวมของ Height และจัดกลุ่มตามแอตทริบิวต์ Sex ไม่จำเป็นต้องใช้ตารางทั้งหมด | A bar chart shows the distribution of Sex and the sum of Height , and group by attribute Sex.It is not neccessary to use all the tables. | candidate: Candidate_ID [ int] People_ID [ int] Poll_Source [ text] Date [ text] Support_rate [ real] Consider_rate [ real] Oppose_rate [ real] Unsure_rate [ real] | SELECT Sex, SUM(Height) FROM people GROUP BY Sex | null | general |
มีนักกีฬากี่คนที่มีเวลาต่ำกว่า 55,621 ?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | how many athletes have a time below 55621 ?It is not neccessary to use all the tables. | table_204_262: id [ number] "rank" [ number] "athlete" [ text] "time" [ text] "notes" [ text] "q" [ text] | SELECT COUNT("athlete") FROM table_204_262 WHERE "time" < '5:56.21' | null | general |
บอกจำนวนแต้มอัศวินดำทั้ง 3 เกม ไม่จำเป็นต้องใช้ทุกโต๊ะ | Name the number of black knights points for 3 gameIt is not neccessary to use all the tables. | table_21091145_1: black_knights_points [ VARCHAR] game [ VARCHAR] | SELECT COUNT(black_knights_points) FROM table_21091145_1 WHERE game = 3 | null | general |
ใช้แผนภูมิแท่งเพื่อแสดงจำนวนผู้แทนในแต่ละเทศมณฑล และเรียงลำดับจากต่ำไปสูงด้วยจำนวนทั้งหมด ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | Use a bar chart to show the number of delegates in each county, and order from low to high by the total number.It is not neccessary to use all the tables. | party: Party_ID [ int] Year [ real] Party [ text] Governor [ text] Lieutenant_Governor [ text] Comptroller [ text] Attorney_General [ text] US_Senate [ text] | SELECT County_name, COUNT(County_name) FROM county AS T1 JOIN election AS T2 ON T1.County_Id = T2.District GROUP BY County_name ORDER BY COUNT(County_name) | null | general |
แผนภูมิแท่ง x แกน วันที่ตีพิมพ์ แกน y มีวันที่ตีพิมพ์กี่วัน คุณสามารถเรียงลำดับตามแกน x จากน้อยไปหามากได้หรือไม่ ไม่จำเป็นต้องใช้ตารางทั้งหมด | Bar chart x axis publication date y axis how many publication date, could you order by the x-axis in ascending?It is not neccessary to use all the tables. | book: Book_ID [ int] Title [ text] Issues [ real] Writer [ text] | SELECT Publication_Date, COUNT(Publication_Date) FROM publication GROUP BY Publication_Date ORDER BY Publication_Date | null | general |
ผลรวมของฝูงชนที่ดูฟิตซ์รอยเล่นเป็นทีมเยือนคือเท่าไร?ไม่จำเป็นที่จะต้องใช้โต๊ะทั้งหมด | What was the sum of the crowds that watched Fitzroy play as the away team?It is not neccessary to use all the tables. | table_32242: "Venue" [ text] "Crowd" [ real] "Date" [ text] | SELECT SUM("Crowd") FROM table_32242 WHERE "Away team" = 'fitzroy' | null | general |
วันที่เท่าไหร่ที่ @ new orleans เป็นทีม?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What date has @ new orleans as the team?It is not neccessary to use all the tables. | table_49195: "Game" [ real] "Date" [ text] "Team" [ text] "Score" [ text] "Record" [ text] | SELECT "Date" FROM table_49195 WHERE "Team" = '@ new orleans' | null | general |
สถิติของเซลติกส์หลังเกมที่ 33 เป็นอย่างไรบ้างเมื่อพวกเขาทำคะแนนในเกมได้ 111-108? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the celtics record after game 33 when they score of the game was 111-108?It is not neccessary to use all the tables. | table_49647: "Game" [ real] "Date" [ text] "Opponent" [ text] "Score" [ text] "Location" [ text] "Record" [ text] | SELECT "Record" FROM table_49647 WHERE "Game" > '33' AND "Score" = '111-108' | null | general |
ผู้เข้ารอบสุดท้ายมีจำนวนเท่าไร ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | what was the total number of finalists ?It is not neccessary to use all the tables. | table_203_129: id [ number] "finalist" [ text] "age" [ number] "from" [ text] "status" [ text] | SELECT COUNT("finalist") FROM table_203_129 | null | general |
Road Team ของเกมที่ 3 คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the Road Team of Game 3?It is not neccessary to use all the tables. | table_46899: "Game" [ text] "Date" [ text] "Result" [ text] | SELECT "Road Team" FROM table_46899 WHERE "Game" = 'game 3' | null | general |
รอบรองชนะเลิศการประชุมใดมีสถิติ 55 27?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which Conference Semifinals has a Record of 55 27?It is not neccessary to use all the tables. | table_name_73: conference_semifinals [ VARCHAR] record [ VARCHAR] | SELECT conference_semifinals FROM table_name_73 WHERE record = "55–27" | null | general |
แสดงจำนวนหลักสูตรในปี 2551 สำหรับผู้สอนทุกคนด้วยแผนภูมิแท่งและแสดงตามชื่อจากต่ำไปสูง ไม่จำเป็นต้องใช้ตารางทั้งหมด | Show how many courses in 2008 for every instructor with a bar chart, and display by the names from low to high.It is not neccessary to use all the tables. | time_slot: time_slot_id [ varchar(4)] day [ varchar(1)] start_hr [ numeric(2)] start_min [ numeric(2)] end_hr [ numeric(2)] end_min [ numeric(2)] | SELECT name, COUNT(name) FROM course AS T1 JOIN teaches AS T2 ON T1.course_id = T2.course_id JOIN instructor AS T3 ON T2.ID = T3.ID WHERE year = 2008 GROUP BY name ORDER BY name | null | general |
'การฝึกตีบอล' มีผู้ชมกี่ล้านคน?ไม่จำเป็นต้องใช้ตารางทั้งหมด | How many viewers in millions did 'batting practice' get?It is not neccessary to use all the tables. | table_29157: "Title" [ text] | SELECT "U.S. viewers (million)" FROM table_29157 WHERE "Title" = 'Batting Practice' | null | general |
รายชื่อโทรศัพท์ที่ไม่มีอยู่ในตลาดใด ๆ ไม่จำเป็นต้องใช้ตารางทั้งหมด | List the names of phones that are not on any market.It is not neccessary to use all the tables. | phone: Name [ VARCHAR] Phone_id [ VARCHAR] Phone_ID [ VARCHAR] | SELECT Name FROM phone WHERE NOT Phone_id IN (SELECT Phone_id FROM phone_market) | null | general |
ผู้เล่นที่ถูกยืมตัวเมื่อวันที่ 27 พฤศจิกายน พ.ศ. 2551 ย้ายไปที่ใด ?ไม่จำเป็นต้องใช้โต๊ะทั้งหมด | Where did the player loaned out on 27 november 2008 move to ?It is not neccessary to use all the tables. | table_62206: "Pos." [ text] "Name" [ text] | SELECT "Moving To" FROM table_62206 WHERE "Date From" = '27 november 2008' | null | general |
ถ้าอันดับที่ 9 จำนวนโพเดียมทั้งหมดเป็นเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด | If the position is 9th, what is the total podiums number?It is not neccessary to use all the tables. | table_2494: "Season" [ real] "Series" [ text] "Team" [ text] "Races" [ real] "Wins" [ real] "Poles" [ real] "F/Laps" [ real] "Podiums" [ real] "Points" [ real] "Position" [ text] | SELECT COUNT("Podiums") FROM table_2494 WHERE "Position" = '9th' | null | general |
คุณช่วยบอกฉันหน่อยได้ไหมว่าที่ผ่านมา Dr. Keith Christensen เคยสอนวิชาอะไร ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Can you tell me what classes Dr. Keith Christensen has taught in the past ?It is not neccessary to use all the tables. | course_prerequisite: pre_course_id [ int] course_id [ int] | SELECT DISTINCT course.department, course.name, course.number FROM course, course_offering, instructor, offering_instructor WHERE course_offering.semester < (SELECT SEMESTERalias0.semester_id FROM semester AS SEMESTERalias0 WHERE SEMESTERalias0.semester = 'WN' AND SEMESTERalias0.year = 2016) AND course.course_id = course_offering.course_id AND instructor.name LIKE '%Keith Christensen%' AND offering_instructor.instructor_id = instructor.instructor_id AND offering_instructor.offering_id = course_offering.offering_id | null | general |
คืนการอ้างอิงเอกสารทั้งหมดในการประชุม VLDB ก่อนปี 2005 ให้ฉัน ไม่จำเป็นต้องใช้ตารางทั้งหมด | return me the total citations of papers in the VLDB conference before 2005 .It is not neccessary to use all the tables. | publication_keyword: kid [ int] pid [ int] | SELECT SUM(publication.citation_num) FROM conference, publication WHERE conference.name = 'VLDB' AND publication.cid = conference.cid AND publication.year < 2005 | null | general |
บันทึกเมื่อพวกเขาเล่น Golden State คืออะไร?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What was the record when they played golden state?It is not neccessary to use all the tables. | table_25850: "Game" [ real] "Date" [ text] "Team" [ text] "Score" [ text] "Record" [ text] | SELECT "Record" FROM table_25850 WHERE "Team" = 'Golden State' | null | general |
บรอนซ์ 2 และเงินน้อยกว่า 0 แล้วผลรวมของทองคำเป็นเท่าใด ไม่จำเป็นต้องใช้ทุกโต๊ะ | Bronze of 2, and a Silver smaller than 0 then what is the sum of the gold?It is not neccessary to use all the tables. | table_38352: "Rank" [ text] "Nation" [ text] "Gold" [ real] "Silver" [ real] "Bronze" [ real] "Total" [ real] | SELECT SUM("Gold") FROM table_38352 WHERE "Bronze" = '2' AND "Silver" < '0' | null | general |
Otto Passman (d) ไม่ได้รับการเลือกตั้งครั้งแรกในปีใดโดยไม่เห็นด้วย?ไม่จำเป็นต้องใช้ตารางทั้งหมด | What year was Otto Passman (d) unopposed first elected?It is not neccessary to use all the tables. | table_1341690_18: first_elected [ INTEGER] candidates [ VARCHAR] | SELECT MAX(first_elected) FROM table_1341690_18 WHERE candidates = "Otto Passman (D) Unopposed" | null | general |
ตั้งชื่อตอนจำนวนน้อยที่สุดสำหรับผู้อภิปรายของ Reggie yates และ kelly osbourneไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the least number of episodes for the panelists of reggie yates and kelly osbourneIt is not neccessary to use all the tables. | table_72739: | SELECT MIN("Episode Number") FROM table_72739 WHERE "Who knows the most about the guest host? Panelists" = 'Reggie Yates and Kelly Osbourne' | null | general |
อายุสูงสุดของคนไข้ที่มีสถานภาพสมรสแล้วและปีที่รับเข้ารักษามากกว่าหรือเท่ากับ 2194 คือเท่าใด ไม่จำเป็นต้องใช้ตารางทั้งหมด | what is maximum age of patients whose marital status is married and admission year is greater than or equal to 2194?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 MAX(demographic.age) FROM demographic WHERE demographic.marital_status = "MARRIED" AND demographic.admityear >= "2194" | null | general |
สำหรับแต่ละต้นทาง มีกี่เที่ยวบินที่มาจากที่นั่น?ไม่จำเป็นต้องใช้ตารางทั้งหมด | For each origin, how many flights came from there?It is not neccessary to use all the tables. | certificate: eid [ number] aid [ number] | SELECT origin, COUNT(*) FROM flight GROUP BY origin | null | general |
คำถามของผู้ใช้ที่กำหนดระหว่างวันที่สองวัน ไม่จำเป็นต้องใช้ตารางทั้งหมด | Questions of a given user between two dates.It is not neccessary to use all the tables. | CloseAsOffTopicReasonTypes: Id [ number] IsUniversal [ boolean] InputTitle [ text] MarkdownInputGuidance [ text] MarkdownPostOwnerGuidance [ text] MarkdownPrivilegedUserGuidance [ text] MarkdownConcensusDescription [ text] CreationDate [ time] CreationModeratorId [ number] ApprovalDate [ time] ApprovalModeratorId [ number] DeactivationDate [ time] DeactivationModeratorId [ number] | SELECT Posts.Id, Posts.Id AS "post_link", Posts.CreationDate FROM Posts WHERE OwnerUserId = '##userid##' AND PostTypeId = 1 AND Posts.CreationDate >= '##Date1##' AND Posts.CreationDate <= '##Date2##' ORDER BY Posts.CreationDate | null | general |
สกอร์ใดที่มีคู่ต่อสู้ของ @ la lakers และสถิติ 8-6? ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | Which Score has an Opponent of @ la lakers, and a Record of 8-6?It is not neccessary to use all the tables. | table_46171: "Date" [ text] "Opponent" [ text] "Score" [ text] "Result" [ text] "Record" [ text] | SELECT "Score" FROM table_46171 WHERE "Opponent" = '@ la lakers' AND "Record" = '8-6' | null | general |
ชื่อสถานีใน Toolamba ที่ปัจจุบันถูกรื้อถอนคืออะไร? ไม่จำเป็นต้องใช้ตารางทั้งหมด | What is the name of the station in Toolamba that is currently demolished?It is not neccessary to use all the tables. | table_name_26: name [ VARCHAR] current_status [ VARCHAR] location [ VARCHAR] | SELECT name FROM table_name_26 WHERE current_status = "demolished" AND location = "toolamba" | null | general |
ปีใดมีอันดับน้อยกว่า 2?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which years have a rank less than 2?It is not neccessary to use all the tables. | table_48223: "Rank" [ real] "Player" [ text] "Years" [ text] "Games" [ real] | SELECT "Years" FROM table_48223 WHERE "Rank" < '2' | null | general |
คำนวณจำนวนครั้งที่ผู้ป่วย 030-6898 ได้รับการตรวจวัดระดับน้ำตาลข้างเตียงตั้งแต่ 3 ปีที่แล้ว ไม่จำเป็นต้องใช้ทุกตาราง | calculate the number of times patient 030-6898 received the bedside glucose test test since 3 years ago.It is not neccessary to use all the tables. | treatment: treatmentid [ number] patientunitstayid [ number] treatmentname [ text] treatmenttime [ time] | SELECT COUNT(*) FROM lab WHERE lab.patientunitstayid IN (SELECT patient.patientunitstayid FROM patient WHERE patient.patienthealthsystemstayid IN (SELECT patient.patienthealthsystemstayid FROM patient WHERE patient.uniquepid = '030-6898')) AND lab.labname = 'bedside glucose' AND DATETIME(lab.labresulttime) >= DATETIME(CURRENT_TIME(), '-3 year') | null | general |
ค้นหา ACC_Road และ Team_ID และจัดกลุ่มตามแอตทริบิวต์ All_Home และแสดงภาพตามแผนภูมิแท่ง และคุณช่วยจัดเรียงตามแถบจากมากไปน้อยได้ไหม ไม่จำเป็นต้องใช้ตารางทั้งหมด | Find ACC_Road and Team_ID , and group by attribute All_Home, and visualize them by a bar chart, and could you sort by the bar in descending?It is not neccessary to use all the tables. | basketball_match: Team_ID [ int] School_ID [ int] Team_Name [ text] ACC_Regular_Season [ text] ACC_Percent [ text] ACC_Home [ text] ACC_Road [ text] All_Games [ text] All_Games_Percent [ int] All_Home [ text] All_Road [ text] All_Neutral [ text] | SELECT ACC_Road, Team_ID FROM basketball_match GROUP BY All_Home, ACC_Road ORDER BY ACC_Road DESC | null | general |
ตั้งชื่อขั้นต่ำสำหรับ 2,500-3,000 ฟุตสำหรับสกอตแลนด์ไม่จำเป็นต้องใช้ตารางทั้งหมด | Name the minimum for 2500-3000 ft for scotlandIt is not neccessary to use all the tables. | table_1456056_1: country [ VARCHAR] | SELECT MIN(2500 AS _3000ft) FROM table_1456056_1 WHERE country = "Scotland" | null | general |
เที่ยวบินใดที่บินจากเดนเวอร์ไปซานฟรานซิสโกในวันจันทร์ อังคาร พุธ พฤหัสบดี และศุกร์ นี้ ไม่จำเป็นที่จะต้องใช้ตารางทั้งหมด | what flights fly from DENVER to SAN FRANCISCO on this monday tuesday wednesday thursday and fridayIt is not neccessary to use all the tables. | time_interval: period [ text] begin_time [ int] end_time [ int] | SELECT DISTINCT flight.flight_id FROM airport_service AS AIRPORT_SERVICE_0, airport_service AS AIRPORT_SERVICE_1, city AS CITY_0, city AS CITY_1, date_day AS DATE_DAY_0, date_day AS DATE_DAY_1, date_day AS DATE_DAY_2, date_day AS DATE_DAY_3, date_day AS DATE_DAY_4, days AS DAYS_0, days AS DAYS_1, days AS DAYS_2, days AS DAYS_3, days AS DAYS_4, flight WHERE (((((DATE_DAY_3.day_number = 21 AND DATE_DAY_3.month_number = 2 AND DATE_DAY_3.year = 1991 AND DATE_DAY_4.day_number = 21 AND DATE_DAY_4.month_number = 2 AND DATE_DAY_4.year = 1991 AND DAYS_3.day_name = DATE_DAY_3.day_name AND DAYS_4.day_name = DATE_DAY_4.day_name AND flight.flight_days = DAYS_3.days_code AND flight.flight_days = DAYS_4.days_code) AND DATE_DAY_2.day_number = 21 AND DATE_DAY_2.month_number = 2 AND DATE_DAY_2.year = 1991 AND DAYS_2.day_name = DATE_DAY_2.day_name AND flight.flight_days = DAYS_2.days_code) AND DATE_DAY_1.day_number = 21 AND DATE_DAY_1.month_number = 2 AND DATE_DAY_1.year = 1991 AND DAYS_1.day_name = DATE_DAY_1.day_name AND flight.flight_days = DAYS_1.days_code) AND DATE_DAY_0.day_number = 21 AND DATE_DAY_0.month_number = 2 AND DATE_DAY_0.year = 1991 AND DAYS_0.day_name = DATE_DAY_0.day_name AND flight.flight_days = DAYS_0.days_code) AND CITY_1.city_code = AIRPORT_SERVICE_1.city_code AND CITY_1.city_name = 'SAN FRANCISCO' AND flight.to_airport = AIRPORT_SERVICE_1.airport_code) AND CITY_0.city_code = AIRPORT_SERVICE_0.city_code AND CITY_0.city_name = 'DENVER' AND flight.from_airport = AIRPORT_SERVICE_0.airport_code | null | general |
รายวิชาใดมี 7 หน่วยกิต ?ไม่จำเป็นต้องใช้ตารางทั้งหมด | Which of the courses are worth 7 credits ?It is not neccessary to use all the tables. | course_prerequisite: pre_course_id [ int] course_id [ int] | SELECT DISTINCT name, number FROM course WHERE credits = 7 AND department = 'EECS' | null | general |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.