question
stringlengths 16
224
| query
stringlengths 18
577
| translated_question
stringlengths 5
212
|
---|---|---|
Find the titles of papers whose first author is affiliated with an institution in the country "Japan" and has last name "Ohori"?
|
SELECT t3.title FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid JOIN inst AS t4 ON t2.instid = t4.instid WHERE t4.country = "Japan" AND t2.authorder = 1 AND t1.lname = "Ohori"
|
İlk yazarı "Japonya" ülkesindeki bir kuruma bağlı ve "Ohori" soyadı olan makalelerin başlıklarını bulabilir mi?
|
Count the number of distinct player positions.
|
SELECT count(DISTINCT POSITION) FROM player
|
Farklı oyuncu pozisyonlarının sayısını sayın.
|
What are dates of birth of all the guests whose gender is "Male"?
|
SELECT date_of_birth FROM Guests WHERE gender_code = "Male"
|
Cinsiyeti "erkek" olan tüm konukların doğum tarihleri nelerdir?
|
When did Linda Smith visit Subway?
|
SELECT TIME FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID JOIN Restaurant ON Visits_Restaurant.ResID = Restaurant.ResID WHERE Student.Fname = "Linda" AND Student.Lname = "Smith" AND Restaurant.ResName = "Subway";
|
Linda Smith Subway'i ne zaman ziyaret etti?
|
What is the role code with the largest number of employees?
|
SELECT role_code FROM Employees GROUP BY role_code ORDER BY count(*) DESC LIMIT 1
|
En fazla sayıda çalışanı olan rol kodu nedir?
|
What is the name of the department with the most students minoring in it?
|
SELECT T1.DName FROM DEPARTMENT AS T1 JOIN MINOR_IN AS T2 ON T1.DNO = T2.DNO GROUP BY T2.DNO ORDER BY count(*) DESC LIMIT 1
|
En çok öğrencinin içinde minnettar olan bölümün adı nedir?
|
What is the number of employees that have a salary between 100000 and 200000?
|
SELECT count(*) FROM Employee WHERE salary BETWEEN 100000 AND 200000
|
100000 ve 200000 arasında maaşlı çalışan sayısı nedir?
|
Show the census ranking of cities whose status are not "Village".
|
SELECT Census_Ranking FROM city WHERE Status != "Village"
|
Durumu "köy" olmayan şehirlerin sayım sıralamasını gösterin.
|
What are the crime rates of counties sorted by number of offices ascending?
|
SELECT Crime_rate FROM county_public_safety ORDER BY Police_officers ASC
|
Artan ofis sayısına göre sıralanan ilçelerin suç oranları nelerdir?
|
Count the number of actors.
|
SELECT count(*) FROM actor
|
Aktör sayısını sayın.
|
Show flight number for all flights with more than 2000 distance.
|
SELECT flno FROM Flight WHERE distance > 2000
|
2000'den fazla mesafeye sahip tüm uçuşlar için uçuş numarasını gösterin.
|
Show all locations and the number of gas stations in each location ordered by the count.
|
SELECT LOCATION , count(*) FROM gas_station GROUP BY LOCATION ORDER BY count(*)
|
Sayım tarafından sipariş edilen her yerde tüm yerleri ve benzin istasyonlarının sayısını gösterin.
|
What is the id of the files that are available in the format of mp4 and a resolution smaller than 1000?
|
SELECT f_id FROM files WHERE formats = "mp4" INTERSECT SELECT f_id FROM song WHERE resolution < 1000
|
MP4 biçiminde bulunan ve 1000'den küçük bir çözünürlükte bulunan dosyaların kimliği nedir?
|
What is the product ID of the most frequently ordered item on invoices?
|
SELECT Product_ID FROM INVOICES GROUP BY Product_ID ORDER BY COUNT(*) DESC LIMIT 1
|
Faturalarda en sık sipariş edilen öğenin ürün kimliği nedir?
|
Which teams had more than 3 eliminations?
|
SELECT Team FROM elimination GROUP BY Team HAVING COUNT(*) > 3
|
Hangi takımların 3'ten fazla eleme vardı?
|
Find the names and descriptions of courses that belong to the subject named "Computer Science".
|
SELECT T1.course_name , T1.course_description FROM Courses AS T1 JOIN Subjects AS T2 ON T1.subject_id = T2.subject_id WHERE T2.subject_name = "Computer Science"
|
"Bilgisayar Bilimi" adlı konuya ait derslerin isimlerini ve açıklamalarını bulun.
|
Show names for all regions except for Denmark.
|
SELECT region_name FROM region WHERE region_name != 'Denmark'
|
Danimarka hariç tüm bölgeler için isimleri gösterin.
|
Find the number of products with category "Spices" and typically sold above 1000.
|
SELECT count(*) FROM products WHERE product_category_code = "Spices" AND typical_buying_price > 1000
|
"Baharat" kategorisi olan ve tipik olarak 1000'in üzerinde satılan ürün sayısını bulun.
|
Find how many different affiliation types there are.
|
SELECT count(DISTINCT affiliation) FROM university
|
Kaç farklı bağlantı türü olduğunu bulun.
|
List the names of hosts who did not serve as a host of any party in our record.
|
SELECT Name FROM HOST WHERE Host_ID NOT IN (SELECT Host_ID FROM party_host)
|
Kayıtımızda herhangi bir taraf olarak hizmet etmeyen ev sahiplerinin adlarını listeleyin.
|
Give the ids and names of products with price lower than 600 or higher than 900.
|
SELECT product_id , product_name FROM products WHERE product_price < 600 OR product_price > 900
|
600'den düşük veya 900'den daha düşük olan ürünlerin kimliklerini ve adlarını verin.
|
List all information about customer master index, and sort them by details in descending order.
|
SELECT * FROM customer_master_index ORDER BY cmi_details DESC
|
Müşteri Master Endeksi ile ilgili tüm bilgileri listeleyin ve bunları azalan sırayla ayrıntılara göre sıralayın.
|
List the ids of the problems from the product "voluptatem" that are reported after 1995?
|
SELECT T1.problem_id FROM problems AS T1 JOIN product AS T2 ON T1.product_id = T2.product_id WHERE T2.product_name = "voluptatem" AND T1.date_problem_reported > "1995"
|
1995'ten sonra bildirilen "Voluptatem" ürününden sorunların kimliklerini listeliyorsunuz?
|
What are the addresses of the course authors or tutors with personal name "Cathrine"
|
SELECT address_line_1 FROM Course_Authors_and_Tutors WHERE personal_name = "Cathrine"
|
Kişisel adı "Cathrine" ile ders yazarlarının veya öğretmenlerin adresleri nelerdir?
|
Return the names of the gymnasts.
|
SELECT T2.Name FROM gymnast AS T1 JOIN people AS T2 ON T1.Gymnast_ID = T2.People_ID
|
Jimnastikçilerin isimlerini iade edin.
|
Count the number of customers recorded.
|
SELECT count(*) FROM CUSTOMERS
|
Kaydedilen müşteri sayısını sayın.
|
Find the name of account that has the lowest total checking and saving balance.
|
SELECT T1.name FROM accounts AS T1 JOIN checking AS T2 ON T1.custid = T2.custid JOIN savings AS T3 ON T1.custid = T3.custid ORDER BY T2.balance + T3.balance LIMIT 1
|
En düşük toplam kontrol ve tasarruf bakiyesine sahip hesap adını bulun.
|
Show each school name, its budgeted amount, and invested amount in year 2002 or after.
|
SELECT T2.school_name , T1.budgeted , T1.invested FROM budget AS T1 JOIN school AS T2 ON T1.school_id = T2.school_id WHERE T1.year >= 2002
|
Her okul adını, bütçeli tutarını ve 2002 yılında veya sonrasında yatırılan tutarı gösterin.
|
What are the details of the project with no outcomes?
|
SELECT project_details FROM Projects WHERE project_id NOT IN ( SELECT project_id FROM Project_outcomes )
|
Sonuçları olmayan projenin detayları nelerdir?
|
Show the number of buildings with a height above the average or a number of floors above the average.
|
SELECT count(*) FROM building WHERE height_feet > (SELECT avg(height_feet) FROM building) OR floors > (SELECT avg(floors) FROM building)
|
Ortalamanın üzerinde yükseklik veya ortalamanın üzerinde bir dizi kat olan bina sayısını gösterin.
|
Which vocal type has the band mate with first name "Marianne" played the most?
|
SELECT TYPE FROM vocals AS T1 JOIN band AS T2 ON T1.bandmate = T2.id WHERE firstname = "Marianne" GROUP BY TYPE ORDER BY count(*) DESC LIMIT 1
|
"Marianne" adlı adlı grup arkadaşı hangi vokal türü var?
|
What are the last names of female students, ordered by age descending?
|
SELECT LName FROM STUDENT WHERE Sex = "F" ORDER BY Age DESC
|
Yaş düşerek sipariş edilen kız öğrencilerin soyadları nelerdir?
|
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.
|
Find the name of students who have taken the prerequisite course of the course with title International Finance.
|
SELECT T1.name FROM student AS T1 JOIN takes AS T2 ON T1.id = T2.id WHERE T2.course_id IN (SELECT T4.prereq_id FROM course AS T3 JOIN prereq AS T4 ON T3.course_id = T4.course_id WHERE T3.title = 'International Finance')
|
Uluslararası Finans Başlığı ile kursun önkoşul seyrini alan öğrencilerin adını bulun.
|
What are the names of all aircrafts that have won a match at least twice?
|
SELECT T1.Aircraft FROM aircraft AS T1 JOIN MATCH AS T2 ON T1.Aircraft_ID = T2.Winning_Aircraft GROUP BY T2.Winning_Aircraft HAVING COUNT(*) >= 2
|
En az iki kez maç kazanan tüm uçakların isimleri nelerdir?
|
display the department name and number of employees in each of the department.
|
SELECT department_name , COUNT(*) FROM employees AS T1 JOIN departments AS T2 ON T1.department_id = T2.department_id GROUP BY department_name
|
Bölümün her birinde departman adını ve çalışan sayısını görüntüleyin.
|
Who performed the song named "Le Pop"?
|
SELECT T2.firstname , T2.lastname FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id JOIN Songs AS T3 ON T3.SongId = T1.SongId WHERE T3.Title = "Le Pop"
|
"Le Pop" adlı şarkıyı kim yaptı?
|
How many students are affected by cat allergies?
|
SELECT count(*) FROM Has_allergy WHERE Allergy = "Cat"
|
Kedi alerjilerinden kaç öğrenci etkilenir?
|
What are the different years for all competitions that are not of type equal to tournament?
|
SELECT DISTINCT YEAR FROM competition WHERE Competition_type != "Tournament"
|
Turnuvaya eşit olmayan tüm yarışmalar için farklı yıllar nelerdir?
|
What are the codes of the locations with at least three documents?
|
SELECT location_code FROM Document_locations GROUP BY location_code HAVING count(*) >= 3
|
En az üç belgeye sahip yerlerin kodları nelerdir?
|
List the name, location, mascot for all schools.
|
SELECT school_name , LOCATION , mascot FROM school
|
Tüm okullar için ad, konum, maskot listeleyin.
|
What are the name and description for role code "MG"?
|
SELECT role_name , role_description FROM ROLES WHERE role_code = "MG"
|
"Mg" rol kodu için adı ve açıklaması nedir?
|
List the names, color descriptions and product descriptions of products with category "Herbs".
|
SELECT T1.product_name , T2.color_description , T1.product_description FROM products AS T1 JOIN Ref_colors AS T2 ON T1.color_code = T2.color_code WHERE product_category_code = "Herbs"
|
Ürünlerin adlarını, renk açıklamalarını ve ürün açıklamalarını "otlar" kategorisi ile listeleyin.
|
What are the personal names and family names of the students? Sort the result in alphabetical order of the family name.
|
SELECT personal_name , family_name FROM Students ORDER BY family_name
|
Öğrencilerin kişisel isimleri ve aile isimleri nelerdir?Sonucu aile adının alfabetik sırasına göre sıralayın.
|
List all the salary values players received in 2010 and 2001.
|
SELECT salary FROM salary WHERE YEAR = 2010 UNION SELECT salary FROM salary WHERE YEAR = 2001
|
Oyuncuların 2010 ve 2001'de aldığı tüm maaş değerlerini listeleyin.
|
Find the distinct driver id and the stop number of all drivers that have a shorter pit stop duration than some drivers in the race with id 841.
|
SELECT DISTINCT driverid , STOP FROM pitstops WHERE duration < (SELECT max(duration) FROM pitstops WHERE raceid = 841)
|
ID 841 ile yarıştaki bazı sürücülerden daha kısa bir çukur durak süresi olan tüm sürücülerin farklı sürücü kimliğini ve durdurma sayısını bulun.
|
List the names of people that are not perpetrators.
|
SELECT Name FROM people WHERE People_ID NOT IN (SELECT People_ID FROM perpetrator)
|
Fail olmayan kişilerin isimlerini listeleyin.
|
Which 3 players won the most player awards? List their full name and id.
|
SELECT T1.name_first , T1.name_last , T1.player_id FROM player AS T1 JOIN player_award AS T2 ON T1.player_id = T2.player_id GROUP BY T1.player_id ORDER BY count(*) DESC LIMIT 3;
|
Hangi 3 oyuncu en fazla oyuncu ödülünü kazandı?Tam adlarını ve kimliklerini listeleyin.
|
What is the average song rating for each language?
|
SELECT avg(rating) , languages FROM song GROUP BY languages
|
Her dil için ortalama şarkı derecesi nedir?
|
Which customers do not have a first notification of loss record? Give me the customer names.
|
SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id
|
Hangi müşterilerin ilk kayıp kaydı bildirimi yoktur?Bana müşteri adlarını ver.
|
Which grade is studying in classroom 103?
|
SELECT DISTINCT grade FROM list WHERE classroom = 103
|
103 sınıfında hangi sınıf okuyor?
|
What are the themes of parties ordered by the number of hosts in ascending manner?
|
SELECT Party_Theme FROM party ORDER BY Number_of_hosts ASC
|
Ev sahibi sayısının artan bir şekilde sipariş ettiği tarafların temaları nelerdir?
|
Show the institution type with the largest number of institutions.
|
SELECT TYPE FROM institution GROUP BY TYPE ORDER BY count(*) DESC LIMIT 1
|
Kurum türünü en fazla sayıda kurumla gösterin.
|
Show codes and fates of missions, and names of ships involved.
|
SELECT T1.Code , T1.Fate , T2.Name FROM mission AS T1 JOIN ship AS T2 ON T1.Ship_ID = T2.Ship_ID
|
Görevlerin kodlarını ve kaderlerini ve ilgili gemilerin isimlerini gösterin.
|
Give me a list of all the service names sorted alphabetically.
|
SELECT service_name FROM services ORDER BY service_name
|
Bana alfabetik olarak sıralanan tüm hizmet adlarının bir listesini verin.
|
List the writers of the books in ascending alphabetical order.
|
SELECT Writer FROM book ORDER BY Writer ASC
|
Kitapların yazarlarını artan alfabetik sırayla listeleyin.
|
List the personal names and family names of all the students in alphabetical order of family name.
|
SELECT personal_name , family_name FROM Students ORDER BY family_name
|
Tüm öğrencilerin kişisel isimlerini ve aile adlarını aile isminin alfabetik sırasına göre listeleyin.
|
How many camera lenses have a focal length longer than 15 mm?
|
SELECT count(*) FROM camera_lens WHERE focal_length_mm > 15
|
Kaç kamera lensinin odak uzunluğu 15 mm'den daha uzun?
|
which poll source does the highest oppose rate come from?
|
SELECT poll_source FROM candidate ORDER BY oppose_rate DESC LIMIT 1
|
En yüksek karşıt oran hangi anket kaynağından geliyor?
|
Show the protein name and the institution name.
|
SELECT T2.protein_name , T1.institution FROM institution AS T1 JOIN protein AS T2 ON T1.institution_id = T2.institution_id
|
Protein adını ve kurum adını gösterin.
|
How many players did Boston Red Stockings have in 2000?
|
SELECT count(*) FROM salary AS T1 JOIN team AS T2 ON T1.team_id = T2.team_id_br WHERE T2.name = 'Boston Red Stockings' AND T1.year = 2000
|
Boston Red Stockings'in 2000 yılında kaç oyuncusu vardı?
|
Find the names of users who do not have a first notification of loss record.
|
SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN first_notification_of_loss AS t2 ON t1.customer_id = t2.customer_id
|
İlk kayıp kaydı bildirimi olmayan kullanıcıların adlarını bulun.
|
List names of all pilot in descending order of age.
|
SELECT Name FROM pilot ORDER BY Age DESC
|
Tüm pilotun isimlerini azalan yaş sırasında listeleyin.
|
Find the first names and last names of male (sex is M) faculties who live in building NEB.
|
SELECT Fname , Lname FROM FACULTY WHERE sex = "M" AND Building = "NEB"
|
Neb'i inşa etmekte yaşayan erkek (seks m) fakültelerinin ilk isimlerini ve soyadlarını bulun.
|
How many different payment methods are there?
|
SELECT count(DISTINCT payment_method) FROM customers
|
Kaç farklı ödeme yöntemi var?
|
Please show the industries of companies in descending order of the number of companies.
|
SELECT Industry FROM Companies GROUP BY Industry ORDER BY COUNT(*) DESC
|
Lütfen şirketlerin endüstrilerini, şirket sayısının azalan sırasına göre gösterin.
|
What are the names of the artists who sang the shortest song?
|
SELECT T1.artist_name FROM song AS T1 JOIN files AS T2 ON T1.f_id = T2.f_id ORDER BY T2.duration LIMIT 1
|
En kısa şarkıyı söyleyen sanatçıların isimleri nelerdir?
|
For each zip code, find the ids of all trips that have a higher average mean temperature above 60?
|
SELECT T1.id FROM trip AS T1 JOIN weather AS T2 ON T1.zip_code = T2.zip_code GROUP BY T2.zip_code HAVING avg(T2.mean_temperature_f) > 60
|
Her posta kodu için, ortalama ortalama sıcaklığa sahip tüm gezilerin kimliklerini 60'ın üzerinde buldunuz mu?
|
Find all the product whose name contains the word "Scanner".
|
SELECT product FROM product WHERE product LIKE "%Scanner%"
|
Adı "tarayıcı" kelimesini içeren tüm ürünü bulun.
|
How many times the number of adults and kids staying in a room reached the maximum capacity of the room?
|
SELECT count(*) FROM Reservations AS T1 JOIN Rooms AS T2 ON T1.Room = T2.RoomId WHERE T2.maxOccupancy = T1.Adults + T1.Kids;
|
Bir odada kalan yetişkin ve çocukların sayısı odanın maksimum kapasitesine ulaştı?
|
List the campuses in Los Angeles county.
|
SELECT campus FROM campuses WHERE county = "Los Angeles"
|
Los Angeles County'deki kampüsleri listeleyin.
|
How many customers do not have an account?
|
SELECT count(*) FROM Customers WHERE customer_id NOT IN (SELECT customer_id FROM Accounts)
|
Kaç müşterinin hesabı yok?
|
Show me the departure date and arrival date for all flights from Los Angeles to Honolulu.
|
SELECT departure_date , arrival_date FROM Flight WHERE origin = "Los Angeles" AND destination = "Honolulu"
|
Bana Los Angeles'tan Honolulu'ya tüm uçuşlar için kalkış tarihini ve varış tarihini gösterin.
|
What is the name of the perpetrator with the biggest weight.
|
SELECT T1.Name FROM people AS T1 JOIN perpetrator AS T2 ON T1.People_ID = T2.People_ID ORDER BY T1.Weight DESC LIMIT 1
|
En büyük ağırlığa sahip failin adı nedir?
|
Which customers have an insurance policy with the type code "Deputy" or "Uniform"? Return the customer details.
|
SELECT DISTINCT t2.customer_details FROM policies AS t1 JOIN customers AS t2 ON t1.customer_id = t2.customer_id WHERE t1.policy_type_code = "Deputy" OR t1.policy_type_code = "Uniform"
|
Hangi müşterilerin "yardımcısı" veya "üniforma" kodunu içeren bir sigorta poliçesi var?Müşteri ayrıntılarını iade edin.
|
Show the unique first names, last names, and phone numbers for all customers with any account.
|
SELECT DISTINCT T1.customer_first_name , T1.customer_last_name , T1.phone_number FROM Customers AS T1 JOIN Accounts AS T2 ON T1.customer_id = T2.customer_id
|
Herhangi bir hesapla tüm müşteriler için benzersiz adları, soyadı ve telefon numaralarını gösterin.
|
How many distinct currency codes are there for all drama workshop groups?
|
SELECT count(DISTINCT Currency_Code) FROM Drama_Workshop_Groups
|
Tüm drama atölye grupları için kaç farklı para kodu var?
|
Find the name of the person who has friends with age above 40 but not under age 30?
|
SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age > 40) EXCEPT SELECT T1.name FROM Person AS T1 JOIN PersonFriend AS T2 ON T1.name = T2.name WHERE T2.friend IN (SELECT name FROM Person WHERE age < 30)
|
40 yaşın üzerinde ama 30 yaşın altında olmayan arkadaşların adını buldunuz mu?
|
Show all information about each body builder.
|
SELECT * FROM body_builder
|
Her vücut oluşturucu hakkında tüm bilgileri gösterin.
|
What is the order id and order details for the order more than two invoices.
|
SELECT T2.order_id , T2.order_details FROM Invoices AS T1 JOIN Orders AS T2 ON T1.order_id = T2.order_id GROUP BY T2.order_id HAVING count(*) > 2
|
İkiden fazla fatura siparişi için sipariş kimliği ve sipariş detayları nedir?
|
Please show the most common reigns of wrestlers.
|
SELECT Reign FROM wrestler GROUP BY Reign ORDER BY COUNT(*) DESC LIMIT 1
|
Lütfen güreşçilerin en yaygın hükümdarlarını gösterin.
|
What is the average number of votes of representatives from party "Republican"?
|
SELECT avg(T1.Votes) FROM election AS T1 JOIN representative AS T2 ON T1.Representative_ID = T2.Representative_ID WHERE T2.Party = "Republican"
|
Parti "Cumhuriyetçi" dan temsilcilerin ortalama oy sayısı nedir?
|
Find the number of settlements each claim corresponds to. Show the number together with the claim id.
|
SELECT T1.Claim_id , count(*) FROM Claims AS T1 JOIN Settlements AS T2 ON T1.claim_id = T2.claim_id GROUP BY T1.claim_id
|
Her iddianın karşılık geldiği yerleşim sayısını bulun.Talep kimliği ile birlikte numarayı gösterin.
|
Show total points of all players.
|
SELECT sum(Points) FROM player
|
Tüm oyuncuların toplam noktalarını gösterin.
|
What are the headquarters and industries of all companies?
|
SELECT Headquarters , Industry FROM company
|
Tüm şirketlerin merkezi ve endüstrileri nelerdir?
|
What are names of the movies that are either made before 1980 or directed by James Cameron?
|
SELECT title FROM Movie WHERE director = "James Cameron" OR YEAR < 1980
|
1980'den önce yapılan veya James Cameron tarafından yönetilen filmlerin isimleri nelerdir?
|
Find the names of all reviewers who have ratings with a NULL value for the date.
|
SELECT DISTINCT name FROM Reviewer AS T1 JOIN Rating AS T2 ON T1.rID = T2.rID WHERE ratingDate = "null"
|
Tarih için null değeri olan derecelendirmelere sahip tüm gözden geçirenlerin adlarını bulun.
|
List the most common type of Status across cities.
|
SELECT Status FROM city GROUP BY Status ORDER BY COUNT(*) DESC LIMIT 1
|
Şehirler arasında en yaygın statü türünü listeleyin.
|
List the names and origins of people who are not body builders.
|
SELECT Name , birth_place FROM people EXCEPT SELECT T1.Name , T1.birth_place FROM people AS T1 JOIN body_builder AS T2 ON T1.people_id = T2.people_id
|
Vücut geliştiricileri olmayan insanların isimlerini ve kökenlerini listeleyin.
|
Return the names of wrestlers with fewer than 100 days held.
|
SELECT Name FROM wrestler WHERE Days_held < 100
|
100 günden az tutulan güreşçilerin adlarını iade edin.
|
What address was the document with id 4 mailed to?
|
SELECT Addresses.address_details FROM Addresses JOIN Documents_Mailed ON Documents_Mailed.mailed_to_address_id = Addresses.address_id WHERE document_id = 4;
|
Kimlik 4'e gönderilen belge hangi adresti?
|
How many leagues are there in England?
|
SELECT count(*) FROM Country AS T1 JOIN League AS T2 ON T1.id = T2.country_id WHERE T1.name = "England"
|
İngiltere'de kaç lig var?
|
Find all the stage positions of the musicians with first name "Solveig"
|
SELECT DISTINCT T1.stageposition FROM Performance AS T1 JOIN Band AS T2 ON T1.bandmate = T2.id WHERE Firstname = "Solveig"
|
"Solveig" adlı müzisyenlerin tüm sahne pozisyonlarını bulun
|
How many states that have some college students playing in the mid position but not in the goalie position.
|
SELECT COUNT(*) FROM (SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'mid' EXCEPT SELECT T1.state FROM college AS T1 JOIN tryout AS T2 ON T1.cName = T2.cName WHERE T2.pPos = 'goalie')
|
Bazı üniversite öğrencilerinin orta pozisyonda oynaması ancak kaleci pozisyonunda olmayan kaç eyalet.
|
What are the total amount of money in the invoices billed from Chicago, Illinois?
|
SELECT sum(total) FROM invoices WHERE billing_city = "Chicago" AND billing_state = "IL";
|
Chicago, Illinois'den faturalandırılan faturalardaki toplam para miktarı nedir?
|
List the weight of the body builders who have snatch score higher than 140 or have the height greater than 200.
|
SELECT T2.weight FROM body_builder AS T1 JOIN people AS T2 ON T1.people_id = T2.people_id WHERE T1.snatch > 140 OR T2.height > 200;
|
Solma skoru 140'dan yüksek olan veya 200'den fazla yüksekliğe sahip vücut üreticilerinin ağırlığını listeleyin.
|
How many climbers are there?
|
SELECT count(*) FROM climber
|
Kaç dağcı var?
|
What are the full names of customers with the account name 900?
|
SELECT T2.customer_first_name , T2.customer_last_name FROM Accounts AS T1 JOIN Customers AS T2 ON T1.customer_id = T2.customer_id WHERE T1.account_name = "900"
|
900 hesap adı olan müşterilerin tam adları nelerdir?
|
Show different publishers together with the number of publications they have.
|
SELECT Publisher , COUNT(*) FROM publication GROUP BY Publisher
|
Farklı yayıncılara sahip oldukları yayın sayısıyla birlikte gösterin.
|
What are the different district names in order of descending city area?
|
SELECT DISTINCT District_name FROM district ORDER BY city_area DESC
|
Azalan Şehir Bölgesi sırasına göre farklı bölge isimleri nelerdir?
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.