question stringlengths 16 224 | query stringlengths 18 577 | translated_question stringlengths 5 212 |
|---|---|---|
Find the names of the artists who are from Bangladesh and have never received rating higher than 7. | SELECT DISTINCT artist_name FROM artist WHERE country = "Bangladesh" EXCEPT SELECT DISTINCT artist_name FROM song WHERE rating > 7 | Bangladeşli ve 7'den daha yüksek puan almamış sanatçıların isimlerini bulun. |
Show the names of pilots and the number of records they have. | SELECT T2.Pilot_name , COUNT(*) FROM pilot_record AS T1 JOIN pilot AS T2 ON T1.pilot_ID = T2.pilot_ID GROUP BY T2.Pilot_name | Pilotların adlarını ve sahip oldukları kayıt sayısını gösterin. |
What are the names of countries that have both players with position forward and players with position defender? | SELECT T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = "Forward" INTERSECT SELECT T1.Country_name FROM country AS T1 JOIN match_season AS T2 ON T1.Country_id = T2.Country WHERE T2.Position = "Defender" | Her iki oyuncunun öne çıkan hem de pozisyon defans oyuncusu olan oyuncuları olan ülkelerin isimleri nelerdir? |
What are teh names of the different products, as well as the number of customers who have ordered each product. | SELECT T2.product_name , count(*) FROM Order_items AS T1 JOIN Products AS T2 ON T1.product_id = T2.product_id JOIN Orders AS T3 ON T3.order_id = T1.order_id GROUP BY T2.product_name | Farklı ürünlerin adları ve her ürünü sipariş eden müşteri sayısı nelerdir. |
What are the names of teams that do no have match season record? | SELECT Name FROM team WHERE Team_id NOT IN (SELECT Team FROM match_season) | Maç sezonu kaydı olmayan takımların isimleri nelerdir? |
What are the average and minimum weights for people of each sex? | SELECT avg(weight) , min(weight) , sex FROM people GROUP BY sex | Her cinsiyetten insanlar için ortalama ve minimum ağırlıklar nelerdir? |
What are the movie titles with the highest average rating and what are those ratings? | SELECT T2.title , avg(T1.stars) FROM Rating AS T1 JOIN Movie AS T2 ON T1.mID = T2.mID GROUP BY T1.mID ORDER BY avg(T1.stars) DESC LIMIT 1 | En yüksek ortalama dereceye sahip film başlıkları nelerdir ve bu derecelendirmeler nelerdir? |
What are the names and cities of bank branches that offer loans for business? | SELECT T1.bname , T1.city FROM bank AS T1 JOIN loan AS T2 ON T1.branch_id = T2.branch_id WHERE T2.loan_type = 'Business' | İş için kredi sunan banka şubelerinin isimleri ve şehirleri nelerdir? |
What is the marketing region code that has the most drama workshop groups? | SELECT Marketing_Region_Code FROM Drama_Workshop_Groups GROUP BY Marketing_Region_Code ORDER BY count(*) DESC LIMIT 1 | En çok drama atölye gruplarına sahip pazarlama bölgesi kodu nedir? |
Return the the names of the drama workshop groups that are located in Feliciaberg city. | SELECT T2.Store_Name FROM Addresses AS T1 JOIN Drama_Workshop_Groups AS T2 ON T1.Address_ID = T2.Address_ID WHERE T1.City_Town = "Feliciaberg" | Feliciacerg City'de bulunan drama atölye gruplarının isimlerini iade edin. |
List all information about courses sorted by credits in the ascending order. | SELECT * FROM COURSE ORDER BY Credits | Kredilere göre sıralanan kurslarla ilgili tüm bilgileri artan sırada listeleyin. |
List all media types. | SELECT name FROM media_types; | Tüm medya türlerini listeleyin. |
How many allergy entries are there? | SELECT count(DISTINCT allergy) FROM Allergy_type | Kaç alerji girişi var? |
Count the number of different companies. | SELECT count(DISTINCT Company) FROM entrepreneur | Farklı şirketlerin sayısını sayın. |
What are the enrollments of schools whose denomination is not "Catholic"? | SELECT Enrollment FROM school WHERE Denomination != "Catholic" | Mezarı "Katolik" olmayan okulların kayıtları nelerdir? |
Find the title of course that is provided by Statistics but not Psychology departments. | SELECT title FROM course WHERE dept_name = 'Statistics' EXCEPT SELECT title FROM course WHERE dept_name = 'Psychology' | Elbette istatistikler tarafından sağlanan ancak psikoloji departmanları tarafından sağlanan başlığı bulun. |
How films are produced by each studio? | SELECT Studio , COUNT(*) FROM film GROUP BY Studio | Her stüdyo tarafından filmler nasıl üretilir? |
How many students did not have any course enrollment? | SELECT count(*) FROM Students WHERE student_id NOT IN (SELECT student_id FROM Student_Course_Enrolment) | Kaç öğrencinin kurs kaydı yoktu? |
What are the names, ages, and countries of artists, sorted by the year they joined? | SELECT name , age , country FROM artist ORDER BY Year_Join | Katıldıkları yıla göre sıralanan sanatçıların isimleri, yaşları ve ülkeleri nelerdir? |
Find the name of the patient who made the appointment with the most recent start date. | SELECT T1.name FROM patient AS T1 JOIN appointment AS T2 ON T1.ssn = T2.patient ORDER BY T2.start DESC LIMIT 1 | En son başlangıç tarihi ile randevu alan hastanın adını bulun. |
What are the distinct address type codes for all customer addresses? | SELECT DISTINCT address_type_code FROM customer_addresses | Tüm müşteri adresleri için farklı adres türü kodları nelerdir? |
What are the three countries that the least players are from? | SELECT birth_country FROM player GROUP BY birth_country ORDER BY count(*) ASC LIMIT 3; | En az oyuncuların olduğu üç ülke nedir? |
What are the names of patients who are not taking the medication of Procrastin-X. | SELECT name FROM patient EXCEPT SELECT T1.name FROM patient AS T1 JOIN Prescribes AS T2 ON T2.Patient = T1.SSN JOIN Medication AS T3 ON T2.Medication = T3.Code WHERE T3.name = 'Procrastin-X' | Procrastin-X ilacını almayan hastaların isimleri nelerdir. |
What are the dates with a maximum temperature higher than 85? | SELECT date FROM weather WHERE max_temperature_f > 85 | Maksimum sıcaklık 85'den yüksek olan tarihler nelerdir? |
How many rooms have king beds? Report the number for each decor type. | SELECT decor , count(*) FROM Rooms WHERE bedType = "King" GROUP BY decor; | Kaç yataklar kaç oda var?Her dekor türü için numarayı bildirin. |
What are the minimum, average, and maximum quantities ordered? Check all the invoices. | SELECT min(Order_Quantity) , avg(Order_Quantity) , max(Order_Quantity) FROM INVOICES | Sipariş edilen minimum, ortalama ve maksimum miktarlar nelerdir?Tüm faturaları kontrol edin. |
What are the names of all students who successfully tried out for the position of striker? | SELECT T1.pName FROM player AS T1 JOIN tryout AS T2 ON T1.pID = T2.pID WHERE T2.decision = 'yes' AND T2.pPos = 'striker' | Forvet pozisyonu için başarılı bir şekilde çalışan tüm öğrencilerin isimleri nelerdir? |
Return the name of the document that has the most sections. | SELECT t1.document_name FROM documents AS t1 JOIN document_sections AS t2 ON t1.document_code = t2.document_code GROUP BY t1.document_code ORDER BY count(*) DESC LIMIT 1 | En çok bölüme sahip belgenin adını döndürün. |
What are the rooms for members of the faculty who are professors and who live in building NEB? | SELECT Room FROM FACULTY WHERE Rank = "Professor" AND Building = "NEB" | Profesör olan ve NEB'yi Bina'da yaşayan fakülte üyeleri için odalar nelerdir? |
How many patients do each physician take care of? List their names and number of patients they take care of. | SELECT T1.name , count(*) FROM physician AS T1 JOIN patient AS T2 ON T1.employeeid = T2.PCP GROUP BY T1.employeeid | Her doktor kaç hasta ilgilenir?İlgilendikleri isimlerini ve hasta sayısını listeleyin. |
What are the names of regions with two or more storms? | SELECT T1.region_name FROM region AS T1 JOIN affected_region AS T2 ON T1.region_id = T2.region_id GROUP BY T1.region_id HAVING count(*) >= 2 | İki veya daha fazla fırtınaya sahip bölgelerin isimleri nelerdir? |
What are the official names of cities that have not hosted a farm competition? | SELECT Official_Name FROM city WHERE City_ID NOT IN (SELECT Host_city_ID FROM farm_competition) | Çiftlik yarışmasına ev sahipliği yapmayan şehirlerin resmi isimleri nelerdir? |
What are the denominations used by both schools founded before 1890 and schools founded after 1900? | SELECT Denomination FROM school WHERE Founded < 1890 INTERSECT SELECT Denomination FROM school WHERE Founded > 1900 | 1890'dan önce kurulan her iki okul ve 1900'den sonra kurulan okullar tarafından kullanılan mezhepler nelerdir? |
What is the average high temperature for each day of week? | SELECT avg(high_temperature) , day_of_week FROM weekly_weather GROUP BY day_of_week | Haftanın her günü için ortalama yüksek sıcaklık nedir? |
What are the ids of all songs that have higher resolution of the average resolution in the modern genre? | SELECT f_id FROM song WHERE resolution > (SELECT avg(resolution) FROM song WHERE genre_is = "modern") | Modern türdeki ortalama çözünürlüğün daha yüksek çözünürlüğüne sahip tüm şarkıların kimlikleri nelerdir? |
What is the name of all tracks in the Rock genre? | SELECT T2.name FROM genres AS T1 JOIN tracks AS T2 ON T1.id = T2.genre_id WHERE T1.name = "Rock"; | Rock türündeki tüm parçaların adı nedir? |
What is the total number of people who have no friends living in Austin? | SELECT count(DISTINCT name) FROM PersonFriend WHERE friend NOT IN (SELECT name FROM person WHERE city = 'Austin') | Austin'de arkadaşı olmayan toplam insan sayısı nedir? |
List the names of all players who have a crossing score higher than 90 and prefer their right foot. | SELECT DISTINCT T1.player_name FROM Player AS T1 JOIN Player_Attributes AS T2 ON T1.player_api_id = T2.player_api_id WHERE T2.crossing > 90 AND T2.preferred_foot = "right" | 90'dan daha yüksek bir geçiş puanı olan tüm oyuncuların isimlerini listeleyin ve sağ ayaklarını tercih edin. |
List the name of products in ascending order of price. | SELECT Product_Name FROM Products ORDER BY Product_Price ASC | Ürünlerin adını artan fiyat sırasına göre listeleyin. |
What is the number of professors for different school? | SELECT count(*) , T1.school_code FROM department AS T1 JOIN professor AS T2 ON T1.dept_code = T2.dept_code GROUP BY T1.school_code | Farklı okul için profesörlerin sayısı nedir? |
How many transactions do we have? | SELECT count(*) FROM Financial_transactions | Kaç işlemimiz var? |
What is the average amount due for all the payments? | SELECT avg(amount_due) FROM payments | Tüm ödemeler için ödenmesi gereken ortalama tutar nedir? |
Find the most prominent max page size among all the products. | SELECT max_page_size FROM product GROUP BY max_page_size ORDER BY count(*) DESC LIMIT 1 | Tüm ürünler arasında en önemli maksimum sayfa boyutunu bulun. |
Find the total population of the top 3 districts with the largest area. | SELECT sum(city_population) FROM district ORDER BY city_area DESC LIMIT 3 | En büyük alana sahip ilk 3 bölgenin toplam nüfusunu bulun. |
How many tracks are in the AAC audio file media type? | SELECT COUNT(*) FROM MEDIATYPE AS T1 JOIN TRACK AS T2 ON T1.MediaTypeId = T2.MediaTypeId WHERE T1.Name = "AAC audio file" | AAC ses dosyası medya türünde kaç parça var? |
Count the number of different countries that climbers are from. | SELECT COUNT(DISTINCT Country) FROM climber | Dağcıların farklı ülkelerinin sayısını sayın. |
What is all the information on the airport with the largest number of international passengers? | SELECT * FROM airport ORDER BY International_Passengers DESC LIMIT 1 | En fazla uluslararası yolcu ile havaalanındaki tüm bilgiler nedir? |
Show the names of companies and the number of employees they have | SELECT T3.Name , COUNT(*) FROM employment AS T1 JOIN people AS T2 ON T1.People_ID = T2.People_ID JOIN company AS T3 ON T1.Company_ID = T3.Company_ID GROUP BY T3.Name | Şirketlerin adlarını ve sahip oldukları çalışan sayısını gösterin |
What are the number of different course codes? | SELECT count(DISTINCT crs_code) FROM CLASS | Farklı kurs kodlarının sayısı nelerdir? |
Find the name of the department that offers the largest number of credits of all classes. | SELECT T3.dept_name FROM course AS T1 JOIN CLASS AS T2 ON T1.crs_code = T2.crs_code JOIN department AS T3 ON T1.dept_code = T3.dept_code GROUP BY T1.dept_code ORDER BY sum(T1.crs_credit) DESC LIMIT 1 | Tüm sınıfların en fazla kredisini sunan bölümün adını bulun. |
Find the name, enrollment of the colleges whose size is bigger than 10000 and location is in state LA. | SELECT cName , enr FROM College WHERE enr > 10000 AND state = "LA" | Boyutu 10000'den büyük ve konumu Eyalet LA'da olan kolejlerin adını, kaydını bulun. |
Which physicians have never taken any appointment? Find their names. | SELECT name FROM physician EXCEPT SELECT T2.name FROM appointment AS T1 JOIN physician AS T2 ON T1.Physician = T2.EmployeeID | Hangi doktorlar hiç randevu almadı?İsimlerini bulun. |
Show the details of all trucks in the order of their license number. | SELECT truck_details FROM trucks ORDER BY truck_licence_number | Lisans numaralarının sırasına göre tüm kamyonların ayrıntılarını gösterin. |
Count the number of regions. | SELECT count(*) FROM region | Bölge sayısını sayın. |
Which clubs have one or more members whose advisor is "1121"? | SELECT DISTINCT t1.clubname FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid JOIN student AS t3 ON t2.stuid = t3.stuid WHERE t3.advisor = 1121 | Hangi kulüplerin danışmanı "1121" olan bir veya daha fazla üyesi var? |
What are the names of parties with at least 2 events? | SELECT T2.party_name FROM party_events AS T1 JOIN party AS T2 ON T1.party_id = T2.party_id GROUP BY T1.party_id HAVING count(*) >= 2 | En az 2 etkinliğe sahip partilerin isimleri nelerdir? |
Show all allergy types and the number of allergies in each type. | SELECT allergytype , count(*) FROM Allergy_type GROUP BY allergytype | Tüm alerji türlerini ve her tipteki alerji sayısını gösterin. |
Which nations have both hosts of age above 45 and hosts of age below 35? | SELECT Nationality FROM HOST WHERE Age > 45 INTERSECT SELECT Nationality FROM HOST WHERE Age < 35 | Hangi ülkelerde hem 45 yaşın üzerinde hem de 35 yaşın altında ev sahibi var? |
What are the opening years in which at least two shops opened? | SELECT open_year FROM branch GROUP BY open_year HAVING count(*) >= 2 | En az iki mağazanın açıldığı açılış yılları nelerdir? |
What are the different majors? | SELECT DISTINCT Major FROM Student | Farklı bölümler nelerdir? |
What are the name of rooms booked by customers whose first name has "ROY" in part? | SELECT T2.roomName FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE firstname LIKE '%ROY%' | Adı kısmen "Roy" olan müşteriler tarafından rezerve edilen odaların adı nelerdir? |
Show the name for regions and the number of storms for each region. | SELECT T1.region_name , count(*) FROM region AS T1 JOIN affected_region AS T2 ON T1.region_id = T2.region_id GROUP BY T1.region_id | Bölgelerin adını ve her bölge için fırtına sayısını gösterin. |
What are the different positions of players from UCLA or Duke colleges? | SELECT DISTINCT POSITION FROM match_season WHERE College = "UCLA" OR College = "Duke" | UCLA veya Duke kolejlerinden oyuncuların farklı pozisyonları nelerdir? |
What are the names of all reviewers that have given 3 or 4 stars for reviews? | SELECT T2.name FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T1.stars = 3 INTERSECT SELECT T2.name FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID WHERE T1.stars = 4 | İncelemeler için 3 veya 4 yıldız veren tüm gözden geçirenlerin isimleri nelerdir? |
What are the ids of the students who registered for course 301? | SELECT student_id FROM student_course_attendance WHERE course_id = 301 | Kurs 301 için kayıtlı öğrencilerin kimlikleri nelerdir? |
Find the total number of rooms in the apartments that have facility code "Gym". | SELECT sum(T2.room_count) FROM Apartment_Facilities AS T1 JOIN Apartments AS T2 ON T1.apt_id = T2.apt_id WHERE T1.facility_code = "Gym" | Tesis kodu "spor salonu" olan dairelerde toplam oda sayısını bulun. |
What are the different film Directors? | SELECT DISTINCT Director FROM film | Farklı film yönetmenleri nelerdir? |
What are the percentage of hispanics in cities with the black percentage higher than 10? | SELECT Hispanic FROM city WHERE Black > 10 | Siyah yüzdesi 10'dan yüksek olan şehirlerde Hispaniklerin yüzdesi nedir? |
Show the flight number of flights with three lowest distances. | SELECT flno FROM Flight ORDER BY distance ASC LIMIT 3 | En düşük üç mesafeye sahip uçuş sayısını gösterin. |
How many universities have a location that contains NY? | SELECT count(*) FROM university WHERE LOCATION LIKE "%NY%" | Kaç üniversitenin NY'yi içeren bir yeri var? |
Show all the locations with at least two cinemas with capacity above 300. | SELECT LOCATION FROM cinema WHERE capacity > 300 GROUP BY LOCATION HAVING count(*) >= 2 | 300'ün üzerinde kapasiteye sahip en az iki sinemaya sahip tüm yerleri gösterin. |
Give me the claim date, settlement date for all the claims whose claimed amount is larger than the average. | SELECT Date_Claim_Made , Date_Claim_Settled FROM Claims WHERE Amount_Claimed > ( SELECT avg(Amount_Claimed) FROM Claims ) | Bana talep edilen tutarı ortalamadan daha büyük olan tüm iddialar için talep tarihini, uzlaşma tarihini verin. |
How many colors are there? | SELECT count(*) FROM ref_colors | Kaç renk var? |
What are the names and budgets of departments with budgets greater than the average? | SELECT dept_name , budget FROM department WHERE budget > (SELECT avg(budget) FROM department) | Bütçeleri ortalamadan daha büyük olan departmanların isimleri ve bütçeleri nelerdir? |
What is the sum of revenue from companies with headquarters in Austin? | SELECT sum(revenue) FROM manufacturers WHERE headquarter = 'Austin' | Austin'de merkezi olan şirketlerden elde edilen gelir toplamı nedir? |
What are the names and ids of all stations that have more than 14 bikes available on average or had bikes installed in December? | SELECT T1.name , T1.id FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id GROUP BY T2.station_id HAVING avg(T2.bikes_available) > 14 UNION SELECT name , id FROM station WHERE installation_date LIKE "12/%" | Aralık ayında ortalama olarak 14'ten fazla bisikleti olan veya bisiklet yüklü olan tüm istasyonların isimleri ve kimlikleri nelerdir? |
List the hardware model name for the phones that have screen mode type "Text" or RAM size greater than 32. | SELECT T2.Hardware_Model_name FROM chip_model AS T1 JOIN phone AS T2 ON T1.Model_name = T2.chip_model JOIN screen_mode AS T3 ON T2.screen_mode = T3.Graphics_mode WHERE T3.Type = "Text" OR T1.RAM_MiB > 32; | Ekran modu "metin" veya RAM boyutu 32'den büyük olan telefonların donanım modeli adını listeleyin. |
What are the maximum, minimum and average home games each stadium held? | SELECT max(home_games) , min(home_games) , avg(home_games) FROM stadium | Her stadyumun tutulan maksimum, minimum ve ortalama ev oyunları nelerdir? |
Find the average number of followers for the users who do not have any tweet. | SELECT avg(followers) FROM user_profiles WHERE UID NOT IN (SELECT UID FROM tweets) | Tweet'i olmayan kullanıcılar için ortalama takipçi sayısını bulun. |
Which colleges does each player with a name that starts with the letter D who tried out go to? | SELECT T1.cName FROM tryout AS T1 JOIN player AS T2 ON T1.pID = T2.pID WHERE T2.pName LIKE 'D%' | Her oyuncunun hangi kolejleri deneyen D Mektubu ile başlayan bir isimle gider? |
Find the official names of cities with population bigger than 1500 or smaller than 500. | SELECT Official_Name FROM city WHERE Population > 1500 OR Population < 500 | 1500'den büyük veya 500'den küçük nüfusa sahip şehirlerin resmi isimlerini bulun. |
What are the last names of faculty in building Barton, sorted by last name? | SELECT Lname FROM FACULTY WHERE Building = "Barton" ORDER BY Lname | Soyadına göre sıralanan Barton Binası'ndaki fakülte soyadları nelerdir? |
What is the age of the tallest person? | SELECT Age FROM people ORDER BY Height DESC LIMIT 1 | En uzun kişinin yaşı nedir? |
Find the city and state of the bank branch named morningside. | SELECT city , state FROM bank WHERE bname = 'morningside' | Morningside adlı banka şubesinin şehrini ve durumunu bulun. |
What are the id and name of the stadium where the most injury accidents happened? | SELECT T1.id , T1.name FROM stadium AS T1 JOIN game AS T2 ON T1.id = T2.stadium_id JOIN injury_accident AS T3 ON T2.id = T3.game_id GROUP BY T1.id ORDER BY count(*) DESC LIMIT 1 | En çok yaralanma kazalarının gerçekleştiği stadyumun kimliği ve adı nedir? |
Find the number of people who is under 40 for each gender. | SELECT count(*) , gender FROM Person WHERE age < 40 GROUP BY gender | Her cinsiyet için 40 yaşın altındaki insan sayısını bulun. |
What are the names and data types of the characteristics of the 'cumin' product? | SELECT t3.characteristic_name , t3.characteristic_data_type FROM products AS t1 JOIN product_characteristics AS t2 ON t1.product_id = t2.product_id JOIN CHARACTERISTICS AS t3 ON t2.characteristic_id = t3.characteristic_id WHERE t1.product_name = "cumin" | 'Cumin' ürününün özelliklerinin isimleri ve veri türleri nelerdir? |
What are the different states that have students trying out? | SELECT DISTINCT state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName | Öğrencilerin denemesini sağlayan farklı eyaletler nelerdir? |
What are the card numbers, names, and hometowns of every member ordered by descending level? | SELECT card_number , name , hometown FROM member ORDER BY LEVEL DESC | Azalan seviyeye göre sipariş edilen her üyenin kart numaraları, adları ve memleketleri nelerdir? |
What are the titles of all the albums alphabetically ascending? | SELECT title FROM albums ORDER BY title; | Alfabetik olarak artan tüm albümlerin başlıkları nelerdir? |
What is the names of the physicians who prescribe medication Thesisin? | SELECT DISTINCT T1.name FROM physician AS T1 JOIN prescribes AS T2 ON T1.employeeid = T2.physician JOIN medication AS T3 ON T3.code = T2.medication WHERE T3.name = "Thesisin" | İlaç tezini reçete eden doktorların isimleri nedir? |
Show all member names who are not in charge of any event. | SELECT member_name FROM member EXCEPT SELECT T1.member_name FROM member AS T1 JOIN party_events AS T2 ON T1.member_id = T2.member_in_charge_id | Herhangi bir olaydan sorumlu olmayan tüm üye adlarını gösterin. |
What are the first names and office of the professors who are in the history department and have a Ph.D? | SELECT T1.emp_fname , T2.prof_office FROM employee AS T1 JOIN professor AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T3.dept_code = T2.dept_code WHERE T3.dept_name = 'History' AND T2.prof_high_degree = 'Ph.D.' | Tarih bölümünde olan ve doktora yapan profesörlerin ilk isimleri ve ofisi nelerdir? |
How many invoices were billed from Chicago, IL? | SELECT COUNT(*) FROM invoices WHERE billing_city = "Chicago" AND billing_state = "IL"; | Chicago, IL'den kaç fatura faturalandırıldı? |
List the name of artworks whose type is not "Program Talent Show". | SELECT Name FROM artwork WHERE TYPE != "Program Talent Show" | Türü "Program Yetenek Gösterisi" olmayan sanat eserlerinin adını listeleyin. |
What is the total access count of documents that are of the most common document type? | SELECT sum(access_count) FROM documents GROUP BY document_type_code ORDER BY count(*) DESC LIMIT 1 | En yaygın belge türüne sahip belgelerin toplam erişim sayısı nedir? |
Return the total points of the gymnast with the lowest age. | SELECT T1.Total_Points FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID ORDER BY T2.Age ASC LIMIT 1 | Jimnastikçi'nin toplam noktalarını en düşük yaşta geri döndürün. |
Find the number of items that did not receive any review. | SELECT count(*) FROM item WHERE i_id NOT IN (SELECT i_id FROM review) | Herhangi bir inceleme almayan öğelerin sayısını bulun. |
What is the email of the student with first name "Emma" and last name "Rohan"? | SELECT email_address FROM Students WHERE first_name = "Emma" AND last_name = "Rohan" | "Emma" ve "Rohan" soyadı adlı öğrencinin e -postası nedir? |
What are the first names of the teachers who teach grade 1? | SELECT DISTINCT T2.firstname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE grade = 1 | 1. sınıf öğreten öğretmenlerin ilk isimleri nelerdir? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.