query_id
int64 0
7k
| database_id
stringclasses 140
values | table_id
sequencelengths 1
5
| query
stringlengths 16
224
| answer
stringlengths 18
577
| difficulty
stringclasses 4
values |
---|---|---|---|---|---|
4,200 | cre_Doc_Tracking_DB | [
"Employees"
] | Show the id of the employee named Ebba. | SELECT employee_ID FROM Employees WHERE employee_name = "Ebba" | easy |
4,201 | cre_Doc_Tracking_DB | [
"Employees"
] | Show the names of all the employees with role "HR". | SELECT employee_name FROM Employees WHERE role_code = "HR" | easy |
4,202 | cre_Doc_Tracking_DB | [
"Employees"
] | Which employees have the role with code "HR"? Find their names. | SELECT employee_name FROM Employees WHERE role_code = "HR" | easy |
4,203 | cre_Doc_Tracking_DB | [
"Employees"
] | Show all role codes and the number of employees in each role. | SELECT role_code , count(*) FROM Employees GROUP BY role_code | medium |
4,204 | cre_Doc_Tracking_DB | [
"Employees"
] | What is the code of each role and the number of employees in each role? | SELECT role_code , count(*) FROM Employees GROUP BY role_code | medium |
4,205 | cre_Doc_Tracking_DB | [
"Employees"
] | 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 | hard |
4,206 | cre_Doc_Tracking_DB | [
"Employees"
] | Find the code of the role that have the most employees. | SELECT role_code FROM Employees GROUP BY role_code ORDER BY count(*) DESC LIMIT 1 | hard |
4,207 | cre_Doc_Tracking_DB | [
"Employees"
] | Show all role codes with at least 3 employees. | SELECT role_code FROM Employees GROUP BY role_code HAVING count(*) >= 3 | easy |
4,208 | cre_Doc_Tracking_DB | [
"Employees"
] | What are the roles with three or more employees? Give me the role codes. | SELECT role_code FROM Employees GROUP BY role_code HAVING count(*) >= 3 | easy |
4,209 | cre_Doc_Tracking_DB | [
"Employees"
] | Show the role code with the least employees. | SELECT role_code FROM Employees GROUP BY role_code ORDER BY count(*) ASC LIMIT 1 | hard |
4,210 | cre_Doc_Tracking_DB | [
"Employees"
] | What is the role with the smallest number of employees? Find the role codes. | SELECT role_code FROM Employees GROUP BY role_code ORDER BY count(*) ASC LIMIT 1 | hard |
4,211 | cre_Doc_Tracking_DB | [
"ROLES",
"Employees"
] | What is the role name and role description for employee called Ebba? | SELECT T2.role_name , T2.role_description FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T1.employee_name = "Ebba" | medium |
4,212 | cre_Doc_Tracking_DB | [
"ROLES",
"Employees"
] | Show the name and description of the role played by the employee named Ebba. | SELECT T2.role_name , T2.role_description FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T1.employee_name = "Ebba" | medium |
4,213 | cre_Doc_Tracking_DB | [
"ROLES",
"Employees"
] | Show the names of employees with role name Editor. | SELECT T1.employee_name FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T2.role_name = "Editor" | medium |
4,214 | cre_Doc_Tracking_DB | [
"ROLES",
"Employees"
] | Find the names of all the employees whose the role name is "Editor". | SELECT T1.employee_name FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T2.role_name = "Editor" | medium |
4,215 | cre_Doc_Tracking_DB | [
"ROLES",
"Employees"
] | Show the employee ids for all employees with role name "Human Resource" or "Manager". | SELECT T1.employee_id FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T2.role_name = "Human Resource" OR T2.role_name = "Manager" | hard |
4,216 | cre_Doc_Tracking_DB | [
"ROLES",
"Employees"
] | What are the employee ids of the employees whose role name is "Human Resource" or "Manager"? | SELECT T1.employee_id FROM Employees AS T1 JOIN ROLES AS T2 ON T1.role_code = T2.role_code WHERE T2.role_name = "Human Resource" OR T2.role_name = "Manager" | hard |
4,217 | cre_Doc_Tracking_DB | [
"Document_locations"
] | What are the different location codes for documents? | SELECT DISTINCT location_code FROM Document_locations | easy |
4,218 | cre_Doc_Tracking_DB | [
"Document_locations"
] | Give me all the distinct location codes for documents. | SELECT DISTINCT location_code FROM Document_locations | easy |
4,219 | cre_Doc_Tracking_DB | [
"Ref_locations",
"All_documents",
"Document_locations"
] | Show the location name for document "Robin CV". | SELECT T3.location_name FROM All_documents AS T1 JOIN Document_locations AS T2 ON T1.document_id = T2.document_id JOIN Ref_locations AS T3 ON T2.location_code = T3.location_code WHERE T1.document_name = "Robin CV" | hard |
4,220 | cre_Doc_Tracking_DB | [
"Ref_locations",
"All_documents",
"Document_locations"
] | What is the location name of the document "Robin CV"? | SELECT T3.location_name FROM All_documents AS T1 JOIN Document_locations AS T2 ON T1.document_id = T2.document_id JOIN Ref_locations AS T3 ON T2.location_code = T3.location_code WHERE T1.document_name = "Robin CV" | hard |
4,221 | cre_Doc_Tracking_DB | [
"Document_locations"
] | Show the location code, the starting date and ending data in that location for all the documents. | SELECT location_code , date_in_location_from , date_in_locaton_to FROM Document_locations | medium |
4,222 | cre_Doc_Tracking_DB | [
"Document_locations"
] | What are each document's location code, and starting date and ending data in that location? | SELECT location_code , date_in_location_from , date_in_locaton_to FROM Document_locations | medium |
4,223 | cre_Doc_Tracking_DB | [
"All_documents",
"Document_locations"
] | What is "the date in location from" and "the date in location to" for the document with name "Robin CV"? | SELECT T1.date_in_location_from , T1.date_in_locaton_to FROM Document_locations AS T1 JOIN All_documents AS T2 ON T1.document_id = T2.document_id WHERE T2.document_name = "Robin CV" | medium |
4,224 | cre_Doc_Tracking_DB | [
"All_documents",
"Document_locations"
] | Find the starting date and ending data in location for the document named "Robin CV". | SELECT T1.date_in_location_from , T1.date_in_locaton_to FROM Document_locations AS T1 JOIN All_documents AS T2 ON T1.document_id = T2.document_id WHERE T2.document_name = "Robin CV" | medium |
4,225 | cre_Doc_Tracking_DB | [
"Document_locations"
] | Show the location codes and the number of documents in each location. | SELECT location_code , count(*) FROM Document_locations GROUP BY location_code | medium |
4,226 | cre_Doc_Tracking_DB | [
"Document_locations"
] | What is the code of each location and the number of documents in that location? | SELECT location_code , count(*) FROM Document_locations GROUP BY location_code | medium |
4,227 | cre_Doc_Tracking_DB | [
"Document_locations"
] | What is the location code with the most documents? | SELECT location_code FROM Document_locations GROUP BY location_code ORDER BY count(*) DESC LIMIT 1 | hard |
4,228 | cre_Doc_Tracking_DB | [
"Document_locations"
] | Find the code of the location with the largest number of documents. | SELECT location_code FROM Document_locations GROUP BY location_code ORDER BY count(*) DESC LIMIT 1 | hard |
4,229 | cre_Doc_Tracking_DB | [
"Document_locations"
] | Show the location codes with at least 3 documents. | SELECT location_code FROM Document_locations GROUP BY location_code HAVING count(*) >= 3 | easy |
4,230 | cre_Doc_Tracking_DB | [
"Document_locations"
] | 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 | easy |
4,231 | cre_Doc_Tracking_DB | [
"Ref_locations",
"Document_locations"
] | Show the location name and code with the least documents. | SELECT T2.location_name , T1.location_code FROM Document_locations AS T1 JOIN Ref_locations AS T2 ON T1.location_code = T2.location_code GROUP BY T1.location_code ORDER BY count(*) ASC LIMIT 1 | extra |
4,232 | cre_Doc_Tracking_DB | [
"Ref_locations",
"Document_locations"
] | What are the name and code of the location with the smallest number of documents? | SELECT T2.location_name , T1.location_code FROM Document_locations AS T1 JOIN Ref_locations AS T2 ON T1.location_code = T2.location_code GROUP BY T1.location_code ORDER BY count(*) ASC LIMIT 1 | extra |
4,233 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed",
"Employees"
] | What are the names of the employees who authorised the destruction and the employees who destroyed the corresponding documents? | SELECT T2.employee_name , T3.employee_name FROM Documents_to_be_destroyed AS T1 JOIN Employees AS T2 ON T1.Destruction_Authorised_by_Employee_ID = T2.employee_id JOIN Employees AS T3 ON T1.Destroyed_by_Employee_ID = T3.employee_id; | medium |
4,234 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed",
"Employees"
] | List the names of the employees who authorized the destruction of documents and the employees who destroyed the corresponding documents. | SELECT T2.employee_name , T3.employee_name FROM Documents_to_be_destroyed AS T1 JOIN Employees AS T2 ON T1.Destruction_Authorised_by_Employee_ID = T2.employee_id JOIN Employees AS T3 ON T1.Destroyed_by_Employee_ID = T3.employee_id; | medium |
4,235 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed"
] | Show the id of each employee and the number of document destruction authorised by that employee. | SELECT Destruction_Authorised_by_Employee_ID , count(*) FROM Documents_to_be_destroyed GROUP BY Destruction_Authorised_by_Employee_ID | medium |
4,236 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed"
] | What are the id of each employee and the number of document destruction authorised by that employee? | SELECT Destruction_Authorised_by_Employee_ID , count(*) FROM Documents_to_be_destroyed GROUP BY Destruction_Authorised_by_Employee_ID | medium |
4,237 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed"
] | Show the employee ids and the number of documents destroyed by each employee. | SELECT Destroyed_by_Employee_ID , count(*) FROM Documents_to_be_destroyed GROUP BY Destroyed_by_Employee_ID | medium |
4,238 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed"
] | What are the id of each employee and the number of document destroyed by that employee? | SELECT Destroyed_by_Employee_ID , count(*) FROM Documents_to_be_destroyed GROUP BY Destroyed_by_Employee_ID | medium |
4,239 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed",
"Employees"
] | Show the ids of the employees who don't authorize destruction for any document. | SELECT employee_id FROM Employees EXCEPT SELECT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed | hard |
4,240 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed",
"Employees"
] | Which employees do not authorize destruction for any document? Give me their employee ids. | SELECT employee_id FROM Employees EXCEPT SELECT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed | hard |
4,241 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed"
] | Show the ids of all employees who have authorized destruction. | SELECT DISTINCT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed | easy |
4,242 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed"
] | What are the ids of all the employees who authorize document destruction? | SELECT DISTINCT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed | easy |
4,243 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed"
] | Show the ids of all employees who have destroyed a document. | SELECT DISTINCT Destroyed_by_Employee_ID FROM Documents_to_be_destroyed | easy |
4,244 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed"
] | What are the ids of all the employees who have destroyed documents? | SELECT DISTINCT Destroyed_by_Employee_ID FROM Documents_to_be_destroyed | easy |
4,245 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed",
"Employees"
] | Show the ids of all employees who don't destroy any document. | SELECT employee_id FROM Employees EXCEPT SELECT Destroyed_by_Employee_ID FROM Documents_to_be_destroyed | hard |
4,246 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed",
"Employees"
] | Which employees do not destroy any document? Find their employee ids. | SELECT employee_id FROM Employees EXCEPT SELECT Destroyed_by_Employee_ID FROM Documents_to_be_destroyed | hard |
4,247 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed"
] | Show the ids of all employees who have either destroyed a document or made an authorization to do this. | SELECT Destroyed_by_Employee_ID FROM Documents_to_be_destroyed UNION SELECT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed | hard |
4,248 | cre_Doc_Tracking_DB | [
"Documents_to_be_destroyed"
] | Which employees have either destroyed a document or made an authorization to do so? Return their employee ids. | SELECT Destroyed_by_Employee_ID FROM Documents_to_be_destroyed UNION SELECT Destruction_Authorised_by_Employee_ID FROM Documents_to_be_destroyed | hard |
4,249 | club_1 | [
"club"
] | How many clubs are there? | SELECT count(*) FROM club | easy |
4,250 | club_1 | [
"club"
] | Count the total number of clubs. | SELECT count(*) FROM club | easy |
4,251 | club_1 | [
"club"
] | What are the names of all clubs? | SELECT clubname FROM club | easy |
4,252 | club_1 | [
"club"
] | Give me the name of each club. | SELECT clubname FROM club | easy |
4,253 | club_1 | [
"student"
] | How many students are there? | SELECT count(*) FROM student | easy |
4,254 | club_1 | [
"student"
] | Count the total number of students. | SELECT count(*) FROM student | easy |
4,255 | club_1 | [
"student"
] | What are the first names of all the students? | SELECT DISTINCT fname FROM student | easy |
4,256 | club_1 | [
"student"
] | Find each student's first name. | SELECT DISTINCT fname FROM student | easy |
4,257 | club_1 | [
"student",
"club",
"member_of_club"
] | Find the last names of the members of the club "Bootup Baltimore". | SELECT 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" | hard |
4,258 | club_1 | [
"student",
"club",
"member_of_club"
] | Who are the members of the club named "Bootup Baltimore"? Give me their last names. | SELECT 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" | hard |
4,259 | club_1 | [
"student",
"club",
"member_of_club"
] | Who are the members of the club named "Hopkins Student Enterprises"? Show the last name. | SELECT 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 = "Hopkins Student Enterprises" | hard |
4,260 | club_1 | [
"student",
"club",
"member_of_club"
] | Return the last name for the members of the club named "Hopkins Student Enterprises". | SELECT 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 = "Hopkins Student Enterprises" | hard |
4,261 | club_1 | [
"student",
"club",
"member_of_club"
] | How many members does the club "Tennis Club" has? | SELECT count(*) 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 = "Tennis Club" | hard |
4,262 | club_1 | [
"student",
"club",
"member_of_club"
] | Count the members of the club "Tennis Club". | SELECT count(*) 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 = "Tennis Club" | hard |
4,263 | club_1 | [
"student",
"club",
"member_of_club"
] | Find the number of members of club "Pen and Paper Gaming". | SELECT count(*) 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 = "Pen and Paper Gaming" | hard |
4,264 | club_1 | [
"student",
"club",
"member_of_club"
] | How many people have membership in the club "Pen and Paper Gaming"? | SELECT count(*) 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 = "Pen and Paper Gaming" | hard |
4,265 | club_1 | [
"student",
"club",
"member_of_club"
] | How many clubs does "Linda Smith" belong to? | SELECT count(*) 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.fname = "Linda" AND t3.lname = "Smith" | hard |
4,266 | club_1 | [
"student",
"club",
"member_of_club"
] | How many clubs does "Linda Smith" have membership for? | SELECT count(*) 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.fname = "Linda" AND t3.lname = "Smith" | hard |
4,267 | club_1 | [
"student",
"club",
"member_of_club"
] | Find the number of clubs where "Tracy Kim" is a member. | SELECT count(*) 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.fname = "Tracy" AND t3.lname = "Kim" | hard |
4,268 | club_1 | [
"student",
"club",
"member_of_club"
] | For how many clubs is "Tracy Kim" a member? | SELECT count(*) 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.fname = "Tracy" AND t3.lname = "Kim" | hard |
4,269 | club_1 | [
"student",
"club",
"member_of_club"
] | 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" | hard |
4,270 | club_1 | [
"student",
"club",
"member_of_club"
] | Give me the first name and last name for all the female members of the club "Bootup Baltimore". | 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" | hard |
4,271 | club_1 | [
"student",
"club",
"member_of_club"
] | Find all the male members of club "Hopkins Student Enterprises". 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 = "Hopkins Student Enterprises" AND t3.sex = "M" | hard |
4,272 | club_1 | [
"student",
"club",
"member_of_club"
] | What are the first name and last name of each male member in club "Hopkins Student Enterprises"? | 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 = "Hopkins Student Enterprises" AND t3.sex = "M" | hard |
4,273 | club_1 | [
"student",
"club",
"member_of_club"
] | Find all members of "Bootup Baltimore" whose major is "600". 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.major = "600" | hard |
4,274 | club_1 | [
"student",
"club",
"member_of_club"
] | Which members of "Bootup Baltimore" major in "600"? Give me their first names and last names. | 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.major = "600" | hard |
4,275 | club_1 | [
"student",
"club",
"member_of_club"
] | Which club has the most members majoring in "600"? | SELECT 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.major = "600" GROUP BY t1.clubname ORDER BY count(*) DESC LIMIT 1 | extra |
4,276 | club_1 | [
"student",
"club",
"member_of_club"
] | Find the club which has the largest number of members majoring in "600". | SELECT 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.major = "600" GROUP BY t1.clubname ORDER BY count(*) DESC LIMIT 1 | extra |
4,277 | club_1 | [
"student",
"club",
"member_of_club"
] | Find the name of the club that has the most female students. | SELECT 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.sex = "F" GROUP BY t1.clubname ORDER BY count(*) DESC LIMIT 1 | extra |
4,278 | club_1 | [
"student",
"club",
"member_of_club"
] | Which club has the most female students as their members? Give me the name of the club. | SELECT 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.sex = "F" GROUP BY t1.clubname ORDER BY count(*) DESC LIMIT 1 | extra |
4,279 | club_1 | [
"club"
] | What is the description of the club named "Tennis Club"? | SELECT clubdesc FROM club WHERE clubname = "Tennis Club" | easy |
4,280 | club_1 | [
"club"
] | Find the description of the club called "Tennis Club". | SELECT clubdesc FROM club WHERE clubname = "Tennis Club" | easy |
4,281 | club_1 | [
"club"
] | Find the description of the club "Pen and Paper Gaming". | SELECT clubdesc FROM club WHERE clubname = "Pen and Paper Gaming" | easy |
4,282 | club_1 | [
"club"
] | What is the description of the club "Pen and Paper Gaming"? | SELECT clubdesc FROM club WHERE clubname = "Pen and Paper Gaming" | easy |
4,283 | club_1 | [
"club"
] | What is the location of the club named "Tennis Club"? | SELECT clublocation FROM club WHERE clubname = "Tennis Club" | easy |
4,284 | club_1 | [
"club"
] | Where us the club named "Tennis Club" located? | SELECT clublocation FROM club WHERE clubname = "Tennis Club" | easy |
4,285 | club_1 | [
"club"
] | Find the location of the club "Pen and Paper Gaming". | SELECT clublocation FROM club WHERE clubname = "Pen and Paper Gaming" | easy |
4,286 | club_1 | [
"club"
] | Where is the club "Pen and Paper Gaming" located? | SELECT clublocation FROM club WHERE clubname = "Pen and Paper Gaming" | easy |
4,287 | club_1 | [
"club"
] | Where is the club "Hopkins Student Enterprises" located? | SELECT clublocation FROM club WHERE clubname = "Hopkins Student Enterprises" | easy |
4,288 | club_1 | [
"club"
] | Tell me the location of the club "Hopkins Student Enterprises". | SELECT clublocation FROM club WHERE clubname = "Hopkins Student Enterprises" | easy |
4,289 | club_1 | [
"club"
] | Find the name of all the clubs at "AKW". | SELECT clubname FROM club WHERE clublocation = "AKW" | easy |
4,290 | club_1 | [
"club"
] | Which clubs are located at "AKW"? Return the club names. | SELECT clubname FROM club WHERE clublocation = "AKW" | easy |
4,291 | club_1 | [
"club"
] | How many clubs are located at "HHH"? | SELECT count(*) FROM club WHERE clublocation = "HHH" | easy |
4,292 | club_1 | [
"club"
] | Count the number of clubs located at "HHH". | SELECT count(*) FROM club WHERE clublocation = "HHH" | easy |
4,293 | club_1 | [
"student",
"club",
"member_of_club"
] | What are the first and last name of the president of the club "Bootup Baltimore"? | 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 t2.position = "President" | hard |
4,294 | club_1 | [
"student",
"club",
"member_of_club"
] | Who is the president of the club "Bootup Baltimore"? Give me the first 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 t2.position = "President" | hard |
4,295 | club_1 | [
"student",
"club",
"member_of_club"
] | Who is the "CTO" of club "Hopkins Student Enterprises"? 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 = "Hopkins Student Enterprises" AND t2.position = "CTO" | hard |
4,296 | club_1 | [
"student",
"club",
"member_of_club"
] | Find the first name and last name for the "CTO" of the club "Hopkins Student Enterprises"? | 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 = "Hopkins Student Enterprises" AND t2.position = "CTO" | hard |
4,297 | club_1 | [
"club",
"member_of_club"
] | How many different roles are there in the club "Bootup Baltimore"? | SELECT count(DISTINCT t2.position) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid WHERE t1.clubname = "Bootup Baltimore" | medium |
4,298 | club_1 | [
"club",
"member_of_club"
] | Count the number of different positions in the club "Bootup Baltimore". | SELECT count(DISTINCT t2.position) FROM club AS t1 JOIN member_of_club AS t2 ON t1.clubid = t2.clubid WHERE t1.clubname = "Bootup Baltimore" | medium |
4,299 | club_1 | [
"student",
"club",
"member_of_club"
] | How many members of "Bootup Baltimore" are older than 18? | SELECT count(*) 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.age > 18 | hard |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.