spider_version int64 1 2 | db_id stringclasses 204
values | schema stringclasses 187
values | question stringlengths 3 328 | query stringlengths 20 3.81k |
|---|---|---|---|---|
1 | flight_1 | Show names for all employees who have certificates on both Boeing 737-800 and Airbus A340-300. | SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800" INTERSECT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Airbus A340-300" | |
1 | flight_1 | What are the names of all employees who can fly both the Boeing 737-800 and the Airbus A340-300? | SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800" INTERSECT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Airbus A340-300" | |
1 | flight_1 | Show names for all employees who do not have certificate of Boeing 737-800. | SELECT name FROM Employee EXCEPT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800" | |
1 | flight_1 | What are the names of all employees who are not certified to fly Boeing 737-800s? | SELECT name FROM Employee EXCEPT SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.name = "Boeing 737-800" | |
1 | flight_1 | Show the name of aircraft which fewest people have its certificate. | SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid GROUP BY T1.aid ORDER BY count(*) DESC LIMIT 1 | |
1 | flight_1 | What are the names of the aircraft that the least people are certified to fly? | SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid GROUP BY T1.aid ORDER BY count(*) DESC LIMIT 1 | |
1 | flight_1 | Show the name and distance of the aircrafts with more than 5000 distance and which at least 5 people have its certificate. | SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid WHERE T2.distance > 5000 GROUP BY T1.aid ORDER BY count(*) >= 5 | |
1 | flight_1 | What is the name and distance of every aircraft that can cover a distance of more than 5000 and which at least 5 people can fly? | SELECT T2.name FROM Certificate AS T1 JOIN Aircraft AS T2 ON T2.aid = T1.aid WHERE T2.distance > 5000 GROUP BY T1.aid ORDER BY count(*) >= 5 | |
1 | flight_1 | what is the salary and name of the employee who has the most number of aircraft certificates? | SELECT T1.name , T1.salary FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid GROUP BY T1.eid ORDER BY count(*) DESC LIMIT 1 | |
1 | flight_1 | What is the salaray and name of the employee that is certified to fly the most planes? | SELECT T1.name , T1.salary FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid GROUP BY T1.eid ORDER BY count(*) DESC LIMIT 1 | |
1 | flight_1 | What is the salary and name of the employee who has the most number of certificates on aircrafts with distance more than 5000? | SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.distance > 5000 GROUP BY T1.eid ORDER BY count(*) DESC LIMIT 1 | |
1 | flight_1 | What is the salaray and name of the employee with the most certificates to fly planes more than 5000? | SELECT T1.name FROM Employee AS T1 JOIN Certificate AS T2 ON T1.eid = T2.eid JOIN Aircraft AS T3 ON T3.aid = T2.aid WHERE T3.distance > 5000 GROUP BY T1.eid ORDER BY count(*) DESC LIMIT 1 | |
1 | allergy_1 | How many allergies are there? | SELECT count(DISTINCT allergy) FROM Allergy_type | |
1 | allergy_1 | How many allergy entries are there? | SELECT count(DISTINCT allergy) FROM Allergy_type | |
1 | allergy_1 | How many different allergy types exist? | SELECT count(DISTINCT allergytype) FROM Allergy_type | |
1 | allergy_1 | How many distinct allergies are there? | SELECT count(DISTINCT allergytype) FROM Allergy_type | |
1 | allergy_1 | Show all allergy types. | SELECT DISTINCT allergytype FROM Allergy_type | |
1 | allergy_1 | What are the different allergy types? | SELECT DISTINCT allergytype FROM Allergy_type | |
1 | allergy_1 | Show all allergies and their types. | SELECT allergy , allergytype FROM Allergy_type | |
1 | allergy_1 | What are the allergies and their types? | SELECT allergy , allergytype FROM Allergy_type | |
1 | allergy_1 | Show all allergies with type food. | SELECT DISTINCT allergy FROM Allergy_type WHERE allergytype = "food" | |
1 | allergy_1 | What are all the different food allergies? | SELECT DISTINCT allergy FROM Allergy_type WHERE allergytype = "food" | |
1 | allergy_1 | What is the type of allergy Cat? | SELECT allergytype FROM Allergy_type WHERE allergy = "Cat" | |
1 | allergy_1 | What is allergy type of a cat allergy? | SELECT allergytype FROM Allergy_type WHERE allergy = "Cat" | |
1 | allergy_1 | How many allergies have type animal? | SELECT count(*) FROM Allergy_type WHERE allergytype = "animal" | |
1 | allergy_1 | How many animal type allergies exist? | SELECT count(*) FROM Allergy_type WHERE allergytype = "animal" | |
1 | allergy_1 | Show all allergy types and the number of allergies in each type. | SELECT allergytype , count(*) FROM Allergy_type GROUP BY allergytype | |
1 | allergy_1 | What are the allergy types and how many allergies correspond to each one? | SELECT allergytype , count(*) FROM Allergy_type GROUP BY allergytype | |
1 | allergy_1 | Which allergy type has most number of allergies? | SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY count(*) DESC LIMIT 1 | |
1 | allergy_1 | Which allergy type is most common? | SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY count(*) DESC LIMIT 1 | |
1 | allergy_1 | Which allergy type has least number of allergies? | SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY count(*) ASC LIMIT 1 | |
1 | allergy_1 | Which allergy type is the least common? | SELECT allergytype FROM Allergy_type GROUP BY allergytype ORDER BY count(*) ASC LIMIT 1 | |
1 | allergy_1 | How many students are there? | SELECT count(*) FROM Student | |
1 | allergy_1 | What is the total number of students? | SELECT count(*) FROM Student | |
1 | allergy_1 | Show first name and last name for all students. | SELECT Fname , Lname FROM Student | |
1 | allergy_1 | What are the full names of all students | SELECT Fname , Lname FROM Student | |
1 | allergy_1 | How many different advisors are listed? | SELECT count(DISTINCT advisor) FROM Student | |
1 | allergy_1 | How many advisors are there? | SELECT count(DISTINCT advisor) FROM Student | |
1 | allergy_1 | Show all majors. | SELECT DISTINCT Major FROM Student | |
1 | allergy_1 | What are the different majors? | SELECT DISTINCT Major FROM Student | |
1 | allergy_1 | Show all cities where students live. | SELECT DISTINCT city_code FROM Student | |
1 | allergy_1 | What cities do students live in? | SELECT DISTINCT city_code FROM Student | |
1 | allergy_1 | Show first name, last name, age for all female students. Their sex is F. | SELECT Fname , Lname , Age FROM Student WHERE Sex = 'F' | |
1 | allergy_1 | What are the full names and ages for all female students whose sex is F? | SELECT Fname , Lname , Age FROM Student WHERE Sex = 'F' | |
1 | allergy_1 | Show student ids for all male students. | SELECT StuID FROM Student WHERE Sex = 'M' | |
1 | allergy_1 | What are the student ids for all male students? | SELECT StuID FROM Student WHERE Sex = 'M' | |
1 | allergy_1 | How many students are age 18? | SELECT count(*) FROM Student WHERE age = 18 | |
1 | allergy_1 | How many students are 18 years old? | SELECT count(*) FROM Student WHERE age = 18 | |
1 | allergy_1 | Show all student ids who are older than 20. | SELECT StuID FROM Student WHERE age > 20 | |
1 | allergy_1 | What are the student ids for students over 20 years old? | SELECT StuID FROM Student WHERE age > 20 | |
1 | allergy_1 | Which city does the student whose last name is "Kim" live in? | SELECT city_code FROM Student WHERE LName = "Kim" | |
1 | allergy_1 | Give the city that the student whose family name is Kim lives in. | SELECT city_code FROM Student WHERE LName = "Kim" | |
1 | allergy_1 | Who is the advisor of student with ID 1004? | SELECT Advisor FROM Student WHERE StuID = 1004 | |
1 | allergy_1 | Who advises student 1004? | SELECT Advisor FROM Student WHERE StuID = 1004 | |
1 | allergy_1 | How many students live in HKG or CHI? | SELECT count(*) FROM Student WHERE city_code = "HKG" OR city_code = "CHI" | |
1 | allergy_1 | Give the number of students living in either HKG or CHI. | SELECT count(*) FROM Student WHERE city_code = "HKG" OR city_code = "CHI" | |
1 | allergy_1 | Show the minimum, average, and maximum age of all students. | SELECT min(age) , avg(age) , max(age) FROM Student | |
1 | allergy_1 | What is the minimum, mean, and maximum age across all students? | SELECT min(age) , avg(age) , max(age) FROM Student | |
1 | allergy_1 | What is the last name of the youngest student? | SELECT LName FROM Student WHERE age = (SELECT min(age) FROM Student) | |
1 | allergy_1 | Provide the last name of the youngest student. | SELECT LName FROM Student WHERE age = (SELECT min(age) FROM Student) | |
1 | allergy_1 | Show the student id of the oldest student. | SELECT StuID FROM Student WHERE age = (SELECT max(age) FROM Student) | |
1 | allergy_1 | What student id corresponds to the oldest student? | SELECT StuID FROM Student WHERE age = (SELECT max(age) FROM Student) | |
1 | allergy_1 | Show all majors and corresponding number of students. | SELECT major , count(*) FROM Student GROUP BY major | |
1 | allergy_1 | How many students are there for each major? | SELECT major , count(*) FROM Student GROUP BY major | |
1 | allergy_1 | Which major has most number of students? | SELECT major FROM Student GROUP BY major ORDER BY count(*) DESC LIMIT 1 | |
1 | allergy_1 | What is the largest major? | SELECT major FROM Student GROUP BY major ORDER BY count(*) DESC LIMIT 1 | |
1 | allergy_1 | Show all ages and corresponding number of students. | SELECT age , count(*) FROM Student GROUP BY age | |
1 | allergy_1 | How old is each student and how many students are each age? | SELECT age , count(*) FROM Student GROUP BY age | |
1 | allergy_1 | Show the average age for male and female students. | SELECT avg(age) , sex FROM Student GROUP BY sex | |
1 | allergy_1 | What are the average ages for male and female students? | SELECT avg(age) , sex FROM Student GROUP BY sex | |
1 | allergy_1 | Show all cities and corresponding number of students. | SELECT city_code , count(*) FROM Student GROUP BY city_code | |
1 | allergy_1 | How many students live in each city? | SELECT city_code , count(*) FROM Student GROUP BY city_code | |
1 | allergy_1 | Show all advisors and corresponding number of students. | SELECT advisor , count(*) FROM Student GROUP BY advisor | |
1 | allergy_1 | How many students does each advisor have? | SELECT advisor , count(*) FROM Student GROUP BY advisor | |
1 | allergy_1 | Which advisor has most number of students? | SELECT advisor FROM Student GROUP BY advisor ORDER BY count(*) DESC LIMIT 1 | |
1 | allergy_1 | Give the advisor with the most students. | SELECT advisor FROM Student GROUP BY advisor ORDER BY count(*) DESC LIMIT 1 | |
1 | allergy_1 | How many students have cat allergies? | SELECT count(*) FROM Has_allergy WHERE Allergy = "Cat" | |
1 | allergy_1 | How many students are affected by cat allergies? | SELECT count(*) FROM Has_allergy WHERE Allergy = "Cat" | |
1 | allergy_1 | Show all student IDs who have at least two allergies. | SELECT StuID FROM Has_allergy GROUP BY StuID HAVING count(*) >= 2 | |
1 | allergy_1 | What are the students ids of students who have more than one allergy? | SELECT StuID FROM Has_allergy GROUP BY StuID HAVING count(*) >= 2 | |
1 | allergy_1 | What are the student ids of students who don't have any allergies? | SELECT StuID FROM Student EXCEPT SELECT StuID FROM Has_allergy | |
1 | allergy_1 | Which students are unaffected by allergies? | SELECT StuID FROM Student EXCEPT SELECT StuID FROM Has_allergy | |
1 | allergy_1 | How many female students have milk or egg allergies? | SELECT count(*) FROM has_allergy AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T2.sex = "F" AND T1.allergy = "Milk" OR T1.allergy = "Eggs" | |
1 | allergy_1 | How many students who are female are allergic to milk or eggs? | SELECT count(*) FROM has_allergy AS T1 JOIN Student AS T2 ON T1.StuID = T2.StuID WHERE T2.sex = "F" AND T1.allergy = "Milk" OR T1.allergy = "Eggs" | |
1 | allergy_1 | How many students have a food allergy? | SELECT count(*) FROM Has_allergy AS T1 JOIN Allergy_type AS T2 ON T1.allergy = T2.allergy WHERE T2.allergytype = "food" | |
1 | allergy_1 | How many students are affected by food related allergies? | SELECT count(*) FROM Has_allergy AS T1 JOIN Allergy_type AS T2 ON T1.allergy = T2.allergy WHERE T2.allergytype = "food" | |
1 | allergy_1 | Which allergy has most number of students affected? | SELECT Allergy FROM Has_allergy GROUP BY Allergy ORDER BY count(*) DESC LIMIT 1 | |
1 | allergy_1 | Which allergy is the most common? | SELECT Allergy FROM Has_allergy GROUP BY Allergy ORDER BY count(*) DESC LIMIT 1 | |
1 | allergy_1 | Show all allergies with number of students affected. | SELECT Allergy , count(*) FROM Has_allergy GROUP BY Allergy | |
1 | allergy_1 | How many students have each different allergy? | SELECT Allergy , count(*) FROM Has_allergy GROUP BY Allergy | |
1 | allergy_1 | Show all allergy type with number of students affected. | SELECT T2.allergytype , count(*) FROM Has_allergy AS T1 JOIN Allergy_type AS T2 ON T1.allergy = T2.allergy GROUP BY T2.allergytype | |
1 | allergy_1 | 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 | |
1 | allergy_1 | Find the last name and age of the student who has allergy to both milk and cat. | SELECT lname , age FROM Student WHERE StuID IN (SELECT StuID FROM Has_allergy WHERE Allergy = "Milk" INTERSECT SELECT StuID FROM Has_allergy WHERE Allergy = "Cat") | |
1 | allergy_1 | What are the last names and ages of the students who are allergic to milk and cat? | SELECT lname , age FROM Student WHERE StuID IN (SELECT StuID FROM Has_allergy WHERE Allergy = "Milk" INTERSECT SELECT StuID FROM Has_allergy WHERE Allergy = "Cat") | |
1 | allergy_1 | What are the allergies and their types that the student with first name Lisa has? And order the result by name of allergies. | SELECT T1.Allergy , T1.AllergyType FROM Allergy_type AS T1 JOIN Has_allergy AS T2 ON T1.Allergy = T2.Allergy JOIN Student AS T3 ON T3.StuID = T2.StuID WHERE T3.Fname = "Lisa" ORDER BY T1.Allergy | |
1 | allergy_1 | What are the allergies the girl named Lisa has? And what are the types of them? Order the result by allergy names. | SELECT T1.Allergy , T1.AllergyType FROM Allergy_type AS T1 JOIN Has_allergy AS T2 ON T1.Allergy = T2.Allergy JOIN Student AS T3 ON T3.StuID = T2.StuID WHERE T3.Fname = "Lisa" ORDER BY T1.Allergy | |
1 | allergy_1 | Find the first name and gender of the student who has allergy to milk but not cat. | SELECT fname , sex FROM Student WHERE StuID IN (SELECT StuID FROM Has_allergy WHERE Allergy = "Milk" EXCEPT SELECT StuID FROM Has_allergy WHERE Allergy = "Cat") | |
1 | allergy_1 | What are the first name and gender of the students who have allergy to milk but can put up with cats? | SELECT fname , sex FROM Student WHERE StuID IN (SELECT StuID FROM Has_allergy WHERE Allergy = "Milk" EXCEPT SELECT StuID FROM Has_allergy WHERE Allergy = "Cat") | |
1 | allergy_1 | Find the average age of the students who have allergies with food and animal types. | SELECT avg(age) FROM Student WHERE StuID IN ( SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food" INTERSECT SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "animal") | |
1 | allergy_1 | How old are the students with allergies to food and animal types on average? | SELECT avg(age) FROM Student WHERE StuID IN ( SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "food" INTERSECT SELECT T1.StuID FROM Has_allergy AS T1 JOIN Allergy_Type AS T2 ON T1.Allergy = T2.Allergy WHERE T2.allergytype = "animal") |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.