question
stringlengths
16
224
query
stringlengths
18
577
translated_question
stringlengths
5
212
What are the first names and offices of history professors who don't have Ph.D.s?
SELECT T2.emp_fname , T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T1.dept_code = T3.dept_code WHERE T3.dept_name = 'History' AND T1.prof_high_degree != 'Ph.D.'
Doktora sahibi olmayan tarih profesörlerinin ilk isimleri ve ofisleri nelerdir?
Give the title of the prerequisite to the course International Finance.
SELECT title FROM course WHERE course_id IN (SELECT T1.prereq_id FROM prereq AS T1 JOIN course AS T2 ON T1.course_id = T2.course_id WHERE T2.title = 'International Finance')
Önkoşul unvanını Uluslararası Finans kursuna verin.
For the problem with id 10, return the ids and dates of its problem logs.
SELECT problem_log_id , log_entry_date FROM problem_log WHERE problem_id = 10
Kimlik 10 ile ilgili sorun için, sorun günlüklerinin kimliklerini ve tarihlerini döndürün.
List the name of ships whose nationality is not "United States".
SELECT Name FROM ship WHERE Nationality != "United States"
Uyruğu "Amerika Birleşik Devletleri" olmayan gemilerin adını listeleyin.
Find the minimum salary for the departments whose average salary is above the average payment of all instructors.
SELECT min(salary) , dept_name FROM instructor GROUP BY dept_name HAVING avg(salary) > (SELECT avg(salary) FROM instructor)
Ortalama maaşı tüm eğitmenlerin ortalama ödemesinin üzerinde olan departmanlar için asgari maaş bulun.
Count the number of different account types.
SELECT count(DISTINCT acc_type) FROM customer
Farklı hesap türlerinin sayısını sayın.
Find the products which have problems reported by both Lacey Bosco and Kenton Champlin?
SELECT T2.product_name FROM problems AS T1 JOIN product AS T2 JOIN staff AS T3 ON T1.product_id = T2.product_id AND T1.reported_by_staff_id = T3.staff_id WHERE T3.staff_first_name = "Lacey" AND T3.staff_last_name = "Bosco" INTERSECT SELECT T2.product_name FROM problems AS T1 JOIN product AS T2 JOIN staff AS T3 ON T1.product_id = T2.product_id AND T1.reported_by_staff_id = T3.staff_id WHERE T3.staff_first_name = "Kenton" AND T3.staff_last_name = "Champlin"
Hem Lacey Bosco hem de Kenton Champlin tarafından bildirilen sorunları olan ürünleri buldunuz mu?
What are the names of documents that do not have any sections?
SELECT document_name FROM documents WHERE document_code NOT IN (SELECT document_code FROM document_sections)
Bölümü olmayan belgelerin adları nelerdir?
What is the name of all the people who are older than at least one engineer? Order them by age.
SELECT name FROM Person WHERE age > (SELECT min(age) FROM person WHERE job = 'engineer') ORDER BY age
En az bir mühendisden daha yaşlı olan tüm insanların adı nedir?Onları yaşa göre sipariş edin.
What are the names of students and their respective departments, ordered by number of credits from least to greatest?
SELECT name , dept_name FROM student ORDER BY tot_cred
Öğrencilerin ve kendi bölümlerinin isimleri, en azından en büyük kredi sayısına göre sipariş edilenler nelerdir?
How many films have the word 'Dummy' in their titles?
SELECT count(*) FROM film WHERE title LIKE "%Dummy%"
Başlıklarında kaç film 'kukla' var?
Retrieve the open and close dates of all the policies associated with the customer whose name contains "Diana"
SELECT t2.date_opened , t2.date_closed FROM customers AS t1 JOIN customers_policies AS t2 ON t1.customer_id = t2.customer_id WHERE t1.customer_name LIKE "%Diana%"
Adı "Diana" içeren müşteriyle ilişkili tüm politikaların açık ve kapanış tarihlerini alın
Which song has the most vocals?
SELECT title FROM vocals AS T1 JOIN songs AS T2 ON T1.songid = T2.songid GROUP BY T1.songid ORDER BY count(*) DESC LIMIT 1
Hangi şarkı en çok vokal var?
List all program origins in the alphabetical order.
SELECT origin FROM program ORDER BY origin
Tüm program kökenlerini alfabetik sırayla listeleyin.
What are the names of the chairs of festivals, sorted in ascending order of the year held?
SELECT Chair_Name FROM festival_detail ORDER BY YEAR ASC
Festival sandalyelerinin isimleri nelerdir, düzenlenen yılın artan sırasına göre sıralanır?
Show ids for all aircrafts with more than 1000 distance.
SELECT aid FROM Aircraft WHERE distance > 1000
1000'den fazla mesafeye sahip tüm uçaklar için kimlikler gösterin.
For each trip, return its ending station's installation date.
SELECT T1.id , T2.installation_date FROM trip AS T1 JOIN station AS T2 ON T1.end_station_id = T2.id
Her gezi için son istasyonunun kurulum tarihini döndürün.
Find all students taught by MARROTTE KIRK. Output first and last names of students.
SELECT T1.firstname , T1.lastname FROM list AS T1 JOIN teachers AS T2 ON T1.classroom = T2.classroom WHERE T2.firstname = "MARROTTE" AND T2.lastname = "KIRK"
Marrotte Kirk tarafından öğretilen tüm öğrencileri bulun.Öğrencilerin çıktı ve soyadları.
Find all the female members of club "Bootup Baltimore". Show the first name and last name.
SELECT t3.fname , t3.lname 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 t1.clubname = "Bootup Baltimore" AND t3.sex = "F"
"Bootup Baltimore" kulübünün tüm kadın üyelerini bulun.Ad ve soyadı gösterin.
How many students are 18 years old?
SELECT count(*) FROM Student WHERE age = 18
Kaç öğrenci 18 yaşında?
How many games in total did team Boston Red Stockings attend from 2000 to 2010?
SELECT sum(T1.attendance) FROM home_game AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year BETWEEN 2000 AND 2010;
2000'den 2010'a kadar toplam kaç oyun Boston Red Çorap Takımı katıldı?
Show the crime rates of counties in ascending order of number of police officers.
SELECT Crime_rate FROM county_public_safety ORDER BY Police_officers ASC
İlçelerin suç oranlarını artan polis memurlarının sırasına göre gösterin.
What are the names and number of hours spent training for each player who trains for less than 1500 hours?
SELECT pName , HS FROM Player WHERE HS < 1500
1500 saatten az bir süre eğiten her oyuncu için antrenman geçiren isimler ve saat sayısı nelerdir?
What are the distinct salaries of all instructors who earned less than the maximum salary?
SELECT DISTINCT salary FROM instructor WHERE salary < (SELECT max(salary) FROM instructor)
Maksimum maaştan daha az kazanan tüm eğitmenlerin farklı maaşları nelerdir?
What is the average unit price of tracks that belong to Jazz genre?
SELECT AVG(UnitPrice) FROM GENRE AS T1 JOIN TRACK AS T2 ON T1.GenreId = T2.GenreId WHERE T1.Name = "Jazz"
Caz türüne ait olan parçaların ortalama birim fiyatı nedir?
What is the average rating star for each reviewer?
SELECT T2.name , avg(T1.stars) FROM Rating AS T1 JOIN Reviewer AS T2 ON T1.rID = T2.rID GROUP BY T2.name
Her gözden geçiren için ortalama derecelendirme yıldızı nedir?
What is the location shared by most counties?
SELECT LOCATION FROM county_public_safety GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1
Çoğu ilçe tarafından paylaşılan yer nedir?
What is the name of the aircraft that has won an award the most?
SELECT T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft ORDER BY COUNT(*) DESC LIMIT 1
En çok ödül kazanan uçağın adı nedir?
What are the flight numbers for the aircraft Airbus A340-300?
SELECT T1.flno FROM Flight AS T1 JOIN Aircraft AS T2 ON T1.aid = T2.aid WHERE T2.name = "Airbus A340-300"
Airbus A340-300 uçağı için uçuş numaraları nelerdir?
What is the most frequent status of bookings?
SELECT Status_Code FROM BOOKINGS GROUP BY Status_Code ORDER BY count(*) DESC LIMIT 1
Rezervasyonların en sık statüsü nedir?
What is the name of the room that can accommodate the most people?
SELECT roomName FROM Rooms ORDER BY maxOccupancy DESC LIMIT 1;
En çok insanı barındırabilecek odanın adı nedir?
What are the full names of the 3 instructors who teach the most courses?
SELECT T2.Fname , T2.Lname FROM COURSE AS T1 JOIN FACULTY AS T2 ON T1.Instructor = T2.FacID GROUP BY T1.Instructor ORDER BY count(*) DESC LIMIT 3
En çok dersi veren 3 eğitmenin tam adı nelerdir?
List the names and phone numbers of all the distinct suppliers who supply red jeans.
SELECT DISTINCT T1.supplier_name , T1.supplier_phone FROM suppliers AS T1 JOIN product_suppliers AS T2 ON T1.supplier_id = T2.supplier_id JOIN products AS T3 ON T2.product_id = T3.product_id WHERE T3.product_name = "red jeans"
Kırmızı kot pantolon tedarik eden tüm farklı tedarikçilerin isimlerini ve telefon numaralarını listeleyin.
Find the first name and office of history professor who did not get a Ph.D. degree.
SELECT T2.emp_fname , T1.prof_office FROM professor AS T1 JOIN employee AS T2 ON T1.emp_num = T2.emp_num JOIN department AS T3 ON T1.dept_code = T3.dept_code WHERE T3.dept_name = 'History' AND T1.prof_high_degree != 'Ph.D.'
Ph.D.derece.
Show theme and year for all exhibitions in an descending order of ticket price.
SELECT theme , YEAR FROM exhibition ORDER BY ticket_price DESC
Bilet fiyatının azalan bir sırasına göre tüm sergiler için tema ve yıl gösterin.
Show names of technicians and series of machines they are assigned to repair.
SELECT T3.Name , T2.Machine_series FROM repair_assignment AS T1 JOIN machine AS T2 ON T1.machine_id = T2.machine_id JOIN technician AS T3 ON T1.technician_ID = T3.technician_ID
Teknisyenlerin isimlerini ve onarım için atanan makine serilerini gösterin.
How many type of jobs do they have?
SELECT count(DISTINCT job) FROM Person
Kaç tür işleri var?
What are the maximum and minimum sales of the companies whose industries are not "Banking".
SELECT max(Sales_billion) , min(Sales_billion) FROM Companies WHERE Industry != "Banking"
Endüstrileri "bankacılık" olmayan şirketlerin maksimum ve asgari satışları nelerdir.
What is the total enrollment number of all colleges?
SELECT sum(enr) FROM College
Tüm kolejlerin toplam kayıt numarası nedir?
Which locations have 2 or more cinemas with capacity over 300?
SELECT LOCATION FROM cinema WHERE capacity > 300 GROUP BY LOCATION HAVING count(*) >= 2
Hangi yerlerde 300'den fazla kapasiteli 2 veya daha fazla sinema var?
What are the room names and ids of all the rooms that cost more than 160 and can accommodate more than two people.
SELECT roomName , RoomId FROM Rooms WHERE basePrice > 160 AND maxOccupancy > 2;
160'dan fazla maliyetli ve ikiden fazla kişiyi barındırabilen tüm odaların oda isimleri ve kimlikleri nelerdir.
How many games are held after season 2007?
SELECT count(*) FROM game WHERE season > 2007
2007 sezonundan sonra kaç oyun düzenleniyor?
What is the average, minimum, maximum, and total transaction amount?
SELECT avg(transaction_amount) , min(transaction_amount) , max(transaction_amount) , sum(transaction_amount) FROM Financial_transactions
Ortalama, minimum, maksimum ve toplam işlem tutarı nedir?
What instruments did the musician with the last name "Heilo" play in "Badlands"?
SELECT T4.instrument FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId JOIN Instruments AS T4 ON T4.songid = T3.songid AND T4.bandmateid = T2.id WHERE T2.lastname = "Heilo" AND T3.title = "Badlands"
"Heilo" soyadı ile müzisyen "Badlands" da hangi enstrüman çaldı?
Count the number of artists who are older than 46 and joined after 1990.
SELECT count(*) FROM artist WHERE age > 46 AND year_join > 1990
1990'dan sonra 46 yaşından büyük ve katılan sanatçı sayısını sayın.
List the names of the top 5 oldest people.
SELECT Name FROM People ORDER BY Age DESC LIMIT 5
En büyük 5 kişinin isimlerini listeleyin.
What are the full names of students minoring in department 140?
SELECT T2.Fname , T2.Lname FROM MINOR_IN AS T1 JOIN STUDENT AS T2 ON T1.StuID = T2.StuID WHERE T1.DNO = 140
Bölüm 140'da minibüs yapan öğrencilerin tam isimleri nelerdir?
List the type of bed and name of all traditional rooms.
SELECT roomName , bedType FROM Rooms WHERE decor = "traditional";
Tüm geleneksel odaların yatak türünü ve adını listeleyin.
Find the number and time of the train that goes from Chennai to Guruvayur.
SELECT train_number , TIME FROM train WHERE origin = 'Chennai' AND destination = 'Guruvayur'
Chennai'den Guruvayur'a giden trenin numarasını ve saatini bulun.
What are the ids for courses that were offered in both Fall of 2009 and Spring of 2010?
SELECT course_id FROM SECTION WHERE semester = 'Fall' AND YEAR = 2009 INTERSECT SELECT course_id FROM SECTION WHERE semester = 'Spring' AND YEAR = 2010
Hem 2009 sonbaharında hem de 2010 baharında sunulan kurslar için kimlikler nelerdir?
What are all the album titles, in alphabetical order?
SELECT Title FROM ALBUM ORDER BY Title
Alfabetik sırayla tüm albüm başlıkları nelerdir?
How many students are affected by each allergy type?
SELECT T2.allergytype , count(*) FROM Has_allergy AS T1 JOIN Allergy_type AS T2 ON T1.allergy = T2.allergy GROUP BY T2.allergytype
Her alerji tipinden kaç öğrenci etkilenir?
What are the names of all players that got more than the average number of points?
SELECT name FROM player WHERE points > (SELECT avg(points) FROM player)
Ortalama puan sayısından daha fazlasını alan tüm oyuncuların isimleri nelerdir?
Which program is broadcast most frequently? Give me the program name.
SELECT t1.name FROM program AS t1 JOIN broadcast AS t2 ON t1.program_id = t2.program_id GROUP BY t2.program_id ORDER BY count(*) DESC LIMIT 1
En sık hangi program yayınlanıyor?Bana program adını ver.
Show the names of editors of age either 24 or 25.
SELECT Name FROM editor WHERE Age = 24 OR Age = 25
24 veya 25 yaştaki editörlerin isimlerini gösterin.
How many hosts does each nationality have? List the nationality and the count.
SELECT Nationality , COUNT(*) FROM HOST GROUP BY Nationality
Her milliyetin kaç ev sahibi var?Milliyeti ve sayımı listeleyin.
For each branch id, what are the names of the branches that were registered after 2015?
SELECT T2.name , count(*) FROM membership_register_branch AS T1 JOIN branch AS T2 ON T1.branch_id = T2.branch_id WHERE T1.register_year > 2015 GROUP BY T2.branch_id
Her şube kimliği için, 2015'ten sonra kaydedilen şubelerin adları nelerdir?
Which channels are not owned by CCTV? Give me the channel names.
SELECT name FROM channel WHERE OWNER != 'CCTV'
Hangi kanallar CCTV'ye ait değildir?Bana kanal isimlerini ver.
How many distinct cities does the employees live in?
SELECT COUNT(DISTINCT city) FROM EMPLOYEE
Çalışanlar kaç farklı şehirde yaşıyor?
Who are the nominees who have been nominated more than two times?
SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2
İkiden fazla aday gösterilen adaylar kimlerdir?
Show names for all aircrafts of which John Williams has certificates.
SELECT T3.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T1.name = "John Williams"
John Williams'ın sertifikaları olduğu tüm uçaklar için isimleri gösterin.
What is the code of the category that the product with the name 'flax' belongs to?
SELECT product_category_code FROM products WHERE product_name = "flax"
'Keten' adına sahip ürünün ait olduğu kategorinin kodu nedir?
Show the county name and population of all counties.
SELECT County_name , Population FROM county
Tüm ilçelerin ilçe adını ve nüfusunu gösterin.
What are the ids of the students who either registered or attended a course?
SELECT student_id FROM student_course_registrations UNION SELECT student_id FROM student_course_attendance
Bir kursa kayıt yapan veya katılan öğrencilerin kimlikleri nelerdir?
What is the average total number of passengers of airports that are associated with aircraft "Robinson R-22"?
SELECT avg(T3.Total_Passengers) FROM aircraft AS T1 JOIN airport_aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN airport AS T3 ON T2.Airport_ID = T3.Airport_ID WHERE T1.Aircraft = "Robinson R-22"
"Robinson R-22" uçağı ile ilişkili ortalama havaalanlarının ortalama yolcu sayısı nedir?
Wat is the tax source system code and master customer id of the taxes related to each parking fine id?
SELECT T1.source_system_code , T1.master_customer_id , T2.council_tax_id FROM CMI_Cross_References AS T1 JOIN Parking_Fines AS T2 ON T1.cmi_cross_ref_id = T2.cmi_cross_ref_id
Vergi kaynağı sistem kodu ve her bir park ince kimliği ile ilgili vergilerin ana müşteri kimliği nedir?
How many students got accepted after the tryout?
SELECT count(*) FROM tryout WHERE decision = 'yes'
Denemeden sonra kaç öğrenci kabul edildi?
Find the last name of female (sex is F) students in the descending order of age.
SELECT LName FROM STUDENT WHERE Sex = "F" ORDER BY Age DESC
Kadın (seks f) öğrencilerin soyadını bulun, azalan yaş sırasında bulun.
Show the fleet series of the aircrafts flied by pilots younger than 34
SELECT T2.Fleet_Series FROM pilot_record AS T1 JOIN aircraft AS T2 ON T1.Aircraft_ID = T2.Aircraft_ID JOIN pilot AS T3 ON T1.Pilot_ID = T3.Pilot_ID WHERE T3.Age < 34
34 yaşından küçük pilotlar tarafından uçan uçakların filo serisini göster
Return the type of transaction with the highest total amount.
SELECT transaction_type FROM Financial_transactions GROUP BY transaction_type ORDER BY sum(transaction_amount) DESC LIMIT 1
İşlem türünü en yüksek toplam tutarla döndürün.
How many different teams have had eliminated wrestlers?
SELECT COUNT (DISTINCT team) FROM elimination
Kaç farklı takım güreşçileri ortadan kaldırdı?
How many cards does customer Art Turcotte have?
SELECT count(*) FROM Customers_cards AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T2.customer_first_name = "Art" AND T2.customer_last_name = "Turcotte"
Müşteri Sanatı Türkotu kaç kartı var?
What is the alphabetically ordered list of all distinct medications?
SELECT DISTINCT name FROM medication ORDER BY name
Tüm farklı ilaçların alfabetik olarak sıralanmış listesi nedir?
Find the category descriptions of the products whose descriptions include letter 't'.
SELECT T1.product_category_description FROM ref_product_categories AS T1 JOIN products AS T2 ON T1.product_category_code = T2.product_category_code WHERE T2.product_description LIKE '%t%'
Açıklamaları 'T' harfi içeren ürünlerin kategori açıklamalarını bulun.
How many different FDA approval statuses exist for medicines?
SELECT count(DISTINCT FDA_approved) FROM medicine
İlaçlar için kaç farklı FDA onay durumu var?
What is the name of school that has the smallest enrollment in each state?
SELECT cName , state , min(enr) FROM college GROUP BY state
Her eyalette en küçük kaydına sahip olan okulun adı nedir?
Show different locations and the number of performances at each location.
SELECT LOCATION , COUNT(*) FROM performance GROUP BY LOCATION
Her bir yerde farklı yerleri ve performans sayısını gösterin.
List all open years when at least two shops are opened.
SELECT open_year FROM branch GROUP BY open_year HAVING count(*) >= 2
En az iki mağazanın açıldığı tüm açık yılları listeleyin.
How many medications are prescribed for each brand?
SELECT count(*) , T1.name FROM medication AS T1 JOIN prescribes AS T2 ON T1.code = T2.medication GROUP BY T1.brand
Her marka için kaç ilaç reçete ediliyor?
What is the average account balance of customers with credit score below 50 for the different account types?
SELECT avg(acc_bal) , acc_type FROM customer WHERE credit_score < 50 GROUP BY acc_type
Farklı hesap türleri için 50'nin altında kredi puanı olan müşterilerin ortalama hesap bakiyesi nedir?
Find each student's first name.
SELECT DISTINCT fname FROM student
Her öğrencinin adını bulun.
Find the distinct unit prices for tracks.
SELECT distinct(UnitPrice) FROM TRACK
Pistler için farklı birim fiyatları bulun.
Find the name of physicians who are affiliated with both Surgery and Psychiatry departments.
SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Surgery' INTERSECT SELECT T1.name FROM physician AS T1 JOIN affiliated_with AS T2 ON T1.EmployeeID = T2.physician JOIN department AS T3 ON T2.department = T3.DepartmentID WHERE T3.name = 'Psychiatry'
Hem ameliyat hem de psikiyatri bölümlerine bağlı doktorların adını bulun.
How old is each gender, on average?
SELECT avg(age) , gender FROM Person GROUP BY gender
Her cinsiyet ortalama kaç yaşında?
Find the the name of the customers who have a loan with amount more than 3000.
SELECT T1.cust_name FROM customer AS T1 JOIN loan AS T2 ON T1.cust_id = T2.cust_id WHERE amount > 3000
3000'den fazla miktarda kredisi olan müşterilerin adını bulun.
Show the reign and days held of wrestlers.
SELECT Reign , Days_held FROM wrestler
Güreşçilerin saltanatını ve günlerini göster.
List the ids, names and market shares of all browsers.
SELECT id , name , market_share FROM browser
Tüm tarayıcıların kimliklerini, adlarını ve pazar paylarını listeleyin.
What are the names of instructors who have taught C Programming courses?
SELECT T1.name FROM instructor AS T1 JOIN teaches AS T2 ON T1.id = T2.id JOIN course AS T3 ON T2.course_id = T3.course_id WHERE T3.title = 'C Programming'
C programlama kursları öğreten eğitmenlerin isimleri nelerdir?
Find the id of instructors who didn't teach any courses?
SELECT id FROM instructor EXCEPT SELECT id FROM teaches
Herhangi bir ders vermeyen eğitmenlerin kimliğini buldunuz mu?
Show the names of products that are in at least two events in ascending alphabetical order of product name.
SELECT T1.Product_Name FROM Products AS T1 JOIN Products_in_Events AS T2 ON T1.Product_ID = T2.Product_ID GROUP BY T1.Product_Name HAVING COUNT(*) >= 2 ORDER BY T1.Product_Name
Ürün adının artan alfabetik sırasında en az iki olayda bulunan ürünlerin adlarını gösterin.
What are the heights of perpetrators in descending order of the number of people they injured?
SELECT T1.Height FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID ORDER BY T2.Injured DESC
Yaralandıkları insan sayısının azalan sırasına göre faillerin yükseklikleri nelerdir?
Give the codes of document types that have more than 2 corresponding documents.
SELECT document_type_code FROM documents GROUP BY document_type_code HAVING count(*) > 2
İlgili 2 belgeye sahip belge türlerinin kodlarını verin.
What is the average number of points for players from the "AIB" club?
SELECT avg(T2.Points) FROM club AS T1 JOIN player AS T2 ON T1.Club_ID = T2.Club_ID WHERE T1.name = "AIB"
"AIB" kulübünden oyuncular için ortalama puan sayısı nedir?
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 all songs produced by the artist with the first name "Marianne"?
SELECT T3.Title FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T2.firstname = "Marianne"
"Marianne" adlı ilk adı olan sanatçı tarafından üretilen tüm şarkıların isimleri nelerdir?
What are the times of elimination for wrestlers with over 50 days held?
SELECT T1.Time FROM elimination AS T1 JOIN wrestler AS T2 ON T1.Wrestler_ID = T2.Wrestler_ID WHERE T2.Days_held > 50
50 günden fazla olan güreşçilerin eleme süreleri nelerdir?
What are the line 1 of addresses shared by some students and some teachers?
SELECT T1.line_1 FROM Addresses AS T1 JOIN Students AS T2 ON T1.address_id = T2.address_id INTERSECT SELECT T1.line_1 FROM Addresses AS T1 JOIN Teachers AS T2 ON T1.address_id = T2.address_id
Bazı öğrenciler ve bazı öğretmenler tarafından paylaşılan adreslerin 1. satırı nedir?
List all location codes and location names.
SELECT location_code , location_name FROM Ref_locations
Tüm konum kodlarını ve konum adlarını listeleyin.
Sort the list of all the first and last names of authors in alphabetical order of the last names.
SELECT fname , lname FROM authors ORDER BY lname
Yazarların tüm ilk ve soyadlarının listesini soyadların alfabetik sırasına göre sıralayın.
What is the duration of the oldest actor?
SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1
En eski aktörün süresi nedir?