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 |
---|---|---|---|---|---|
2,800 | election | [
"election",
"party"
] | Which committees have delegates from both democratic party and liberal party? | SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = "Democratic" INTERSECT SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = "Liberal" | extra |
2,801 | election | [
"election",
"party"
] | Find the committees that have delegates both from from the democratic party and the liberal party. | SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = "Democratic" INTERSECT SELECT T1.Committee FROM election AS T1 JOIN party AS T2 ON T1.Party = T2.Party_ID WHERE T2.Party = "Liberal" | extra |
2,802 | news_report | [
"journalist"
] | How many journalists are there? | SELECT count(*) FROM journalist | easy |
2,803 | news_report | [
"journalist"
] | List the names of journalists in ascending order of years working. | SELECT Name FROM journalist ORDER BY Years_working ASC | easy |
2,804 | news_report | [
"journalist"
] | What are the nationalities and ages of journalists? | SELECT Nationality , Age FROM journalist | medium |
2,805 | news_report | [
"journalist"
] | Show the names of journalists from "England" or "Wales". | SELECT Name FROM journalist WHERE Nationality = "England" OR Nationality = "Wales" | medium |
2,806 | news_report | [
"journalist"
] | What is the average number of years spent working as a journalist? | SELECT avg(Years_working) FROM journalist | easy |
2,807 | news_report | [
"journalist"
] | What is the nationality of the journalist with the largest number of years working? | SELECT Nationality FROM journalist ORDER BY Years_working DESC LIMIT 1 | medium |
2,808 | news_report | [
"journalist"
] | Show the different nationalities and the number of journalists of each nationality. | SELECT Nationality , COUNT(*) FROM journalist GROUP BY Nationality | medium |
2,809 | news_report | [
"journalist"
] | Show the most common nationality for journalists. | SELECT Nationality FROM journalist GROUP BY Nationality ORDER BY COUNT(*) DESC LIMIT 1 | hard |
2,810 | news_report | [
"journalist"
] | Show the nations that have both journalists with more than 10 years of working and journalists with less than 3 years of working. | SELECT Nationality FROM journalist WHERE Years_working > 10 INTERSECT SELECT Nationality FROM journalist WHERE Years_working < 3 | hard |
2,811 | news_report | [
"event"
] | Show the dates, places, and names of events in descending order of the attendance. | SELECT Date , Name , venue FROM event ORDER BY Event_Attendance DESC | medium |
2,812 | news_report | [
"news_report",
"journalist",
"event"
] | Show the names of journalists and the dates of the events they reported. | SELECT T3.Name , T2.Date FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID | medium |
2,813 | news_report | [
"news_report",
"journalist",
"event"
] | Show the names of journalists and the names of the events they reported in ascending order | SELECT T3.Name , T2.Name FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID ORDER BY T2.Event_Attendance ASC | hard |
2,814 | news_report | [
"news_report",
"journalist",
"event"
] | Show the names of journalists and the number of events they reported. | SELECT T3.Name , COUNT(*) FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID GROUP BY T3.Name | hard |
2,815 | news_report | [
"news_report",
"journalist",
"event"
] | Show the names of journalists that have reported more than one event. | SELECT T3.Name FROM news_report AS T1 JOIN event AS T2 ON T1.Event_ID = T2.Event_ID JOIN journalist AS T3 ON T1.journalist_ID = T3.journalist_ID GROUP BY T3.Name HAVING COUNT(*) > 1 | hard |
2,816 | news_report | [
"news_report",
"journalist"
] | List the names of journalists who have not reported any event. | SELECT Name FROM journalist WHERE journalist_ID NOT IN (SELECT journalist_ID FROM news_report) | hard |
2,817 | news_report | [
"event"
] | what are the average and maximum attendances of all events? | SELECT avg(Event_Attendance) , max(Event_Attendance) FROM event | medium |
2,818 | news_report | [
"news_report",
"journalist"
] | Find the average age and experience working length of journalists working on different role type. | SELECT avg(t1.age) , avg(Years_working) , t2.work_type FROM journalist AS t1 JOIN news_report AS t2 ON t1.journalist_id = t2.journalist_id GROUP BY t2.work_type | extra |
2,819 | news_report | [
"event"
] | List the event venues and names that have the top 2 most number of people attended. | SELECT venue , name FROM event ORDER BY Event_Attendance DESC LIMIT 2 | medium |
2,820 | restaurant_1 | [
"Restaurant"
] | Show me all the restaurants. | SELECT ResName FROM Restaurant; | easy |
2,821 | restaurant_1 | [
"Restaurant"
] | What is the address of the restaurant Subway? | SELECT Address FROM Restaurant WHERE ResName = "Subway"; | easy |
2,822 | restaurant_1 | [
"Restaurant"
] | What is the rating of the restaurant Subway? | SELECT Rating FROM Restaurant WHERE ResName = "Subway"; | easy |
2,823 | restaurant_1 | [
"Restaurant_Type"
] | List all restaurant types. | SELECT ResTypeName FROM Restaurant_Type; | easy |
2,824 | restaurant_1 | [
"Restaurant_Type"
] | What is the description of the restaurant type Sandwich? | SELECT ResTypeDescription FROM Restaurant_Type WHERE ResTypeName = "Sandwich"; | easy |
2,825 | restaurant_1 | [
"Restaurant"
] | Which restaurants have highest rating? List the restaurant name and its rating. | SELECT ResName , Rating FROM Restaurant ORDER BY Rating DESC LIMIT 1; | medium |
2,826 | restaurant_1 | [
"Student"
] | What is the age of student Linda Smith? | SELECT Age FROM Student WHERE Fname = "Linda" AND Lname = "Smith"; | medium |
2,827 | restaurant_1 | [
"Student"
] | What is the gender of the student Linda Smith? | SELECT Sex FROM Student WHERE Fname = "Linda" AND Lname = "Smith"; | medium |
2,828 | restaurant_1 | [
"Student"
] | List all students' first names and last names who majored in 600. | SELECT Fname , Lname FROM Student WHERE Major = 600; | medium |
2,829 | restaurant_1 | [
"Student"
] | Which city does student Linda Smith live in? | SELECT city_code FROM Student WHERE Fname = "Linda" AND Lname = "Smith"; | medium |
2,830 | restaurant_1 | [
"Student"
] | Advisor 1121 has how many students? | SELECT count(*) FROM Student WHERE Advisor = 1121; | easy |
2,831 | restaurant_1 | [
"Student"
] | Which Advisor has most of students? List advisor and the number of students. | SELECT Advisor , count(*) FROM Student GROUP BY Advisor ORDER BY count(Advisor) DESC LIMIT 1; | hard |
2,832 | restaurant_1 | [
"Student"
] | Which major has least number of students? List the major and the number of students. | SELECT Major , count(*) FROM Student GROUP BY Major ORDER BY count(Major) ASC LIMIT 1; | hard |
2,833 | restaurant_1 | [
"Student"
] | Which major has between 2 and 30 number of students? List major and the number of students. | SELECT Major , count(*) FROM Student GROUP BY Major HAVING count(Major) BETWEEN 2 AND 30; | medium |
2,834 | restaurant_1 | [
"Student"
] | Which student's age is older than 18 and is majoring in 600? List each student's first and last name. | SELECT Fname , Lname FROM Student WHERE Age > 18 AND Major = 600; | medium |
2,835 | restaurant_1 | [
"Student"
] | List all female students age is older than 18 who is not majoring in 600. List students' first name and last name. | SELECT Fname , Lname FROM Student WHERE Age > 18 AND Major != 600 AND Sex = 'F'; | medium |
2,836 | restaurant_1 | [
"Restaurant",
"Restaurant_Type",
"Type_Of_Restaurant"
] | How many restaurant is the Sandwich type restaurant? | SELECT count(*) FROM Restaurant JOIN Type_Of_Restaurant ON Restaurant.ResID = Type_Of_Restaurant.ResID JOIN Restaurant_Type ON Type_Of_Restaurant.ResTypeID = Restaurant_Type.ResTypeID GROUP BY Type_Of_Restaurant.ResTypeID HAVING Restaurant_Type.ResTypeName = 'Sandwich' | hard |
2,837 | restaurant_1 | [
"Visits_Restaurant",
"Student"
] | How long does student Linda Smith spend on the restaurant in total? | SELECT sum(Spent) FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID WHERE Student.Fname = "Linda" AND Student.Lname = "Smith"; | medium |
2,838 | restaurant_1 | [
"Visits_Restaurant",
"Student",
"Restaurant"
] | How many times has the student Linda Smith visited Subway? | SELECT count(*) 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"; | hard |
2,839 | restaurant_1 | [
"Visits_Restaurant",
"Student",
"Restaurant"
] | 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"; | hard |
2,840 | restaurant_1 | [
"Visits_Restaurant",
"Restaurant"
] | At which restaurant did the students spend the least amount of time? List restaurant and the time students spent on in total. | SELECT Restaurant.ResName , sum(Visits_Restaurant.Spent) FROM Visits_Restaurant JOIN Restaurant ON Visits_Restaurant.ResID = Restaurant.ResID GROUP BY Restaurant.ResID ORDER BY sum(Visits_Restaurant.Spent) ASC LIMIT 1; | extra |
2,841 | restaurant_1 | [
"Visits_Restaurant",
"Student"
] | Which student visited restaurant most often? List student's first name and last name. | SELECT Student.Fname , Student.Lname FROM Student JOIN Visits_Restaurant ON Student.StuID = Visits_Restaurant.StuID GROUP BY Student.StuID ORDER BY count(*) DESC LIMIT 1; | extra |
2,842 | customer_deliveries | [
"actual_orders"
] | Find the ids of orders whose status is 'Success'. | SELECT actual_order_id FROM actual_orders WHERE order_status_code = 'Success' | easy |
2,843 | customer_deliveries | [
"products",
"regular_order_products"
] | Find the name and price of the product that has been ordered the greatest number of times. | SELECT t1.product_name , t1.product_price FROM products AS t1 JOIN regular_order_products AS t2 ON t1.product_id = t2.product_id GROUP BY t2.product_id ORDER BY count(*) DESC LIMIT 1 | extra |
2,844 | customer_deliveries | [
"customers"
] | Find the number of customers in total. | SELECT count(*) FROM customers | easy |
2,845 | customer_deliveries | [
"customers"
] | How many different payment methods are there? | SELECT count(DISTINCT payment_method) FROM customers | easy |
2,846 | customer_deliveries | [
"trucks"
] | Show the details of all trucks in the order of their license number. | SELECT truck_details FROM trucks ORDER BY truck_licence_number | easy |
2,847 | customer_deliveries | [
"products"
] | Find the name of the most expensive product. | SELECT product_name FROM products ORDER BY product_price DESC LIMIT 1 | medium |
2,848 | customer_deliveries | [
"addresses",
"customers",
"customer_addresses"
] | Find the names of customers who are not living in the state of California. | SELECT customer_name FROM customers EXCEPT SELECT t1.customer_name FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = 'California' | hard |
2,849 | customer_deliveries | [
"customers"
] | List the names and emails of customers who payed by Visa card. | SELECT customer_email , customer_name FROM customers WHERE payment_method = 'Visa' | medium |
2,850 | customer_deliveries | [
"addresses",
"customers",
"customer_addresses"
] | Find the names and phone numbers of customers living in California state. | SELECT t1.customer_name , t1.customer_phone FROM customers AS t1 JOIN customer_addresses AS t2 ON t1.customer_id = t2.customer_id JOIN addresses AS t3 ON t2.address_id = t3.address_id WHERE t3.state_province_county = 'California' | hard |
2,851 | customer_deliveries | [
"addresses",
"Employees"
] | Find the states which do not have any employee in their record. | SELECT state_province_county FROM addresses WHERE address_id NOT IN (SELECT employee_address_id FROM Employees) | hard |
2,852 | customer_deliveries | [
"Customers"
] | List the names, phone numbers, and emails of all customers sorted by their dates of becoming customers. | SELECT customer_name , customer_phone , customer_email FROM Customers ORDER BY date_became_customer | medium |
2,853 | customer_deliveries | [
"Customers"
] | Find the name of the first 5 customers. | SELECT customer_name FROM Customers ORDER BY date_became_customer LIMIT 5 | medium |
2,854 | customer_deliveries | [
"Customers"
] | Find the payment method that is used most frequently. | SELECT payment_method FROM Customers GROUP BY payment_method ORDER BY count(*) DESC LIMIT 1 | hard |
2,855 | customer_deliveries | [
"Delivery_Routes"
] | List the names of all routes in alphabetic order. | SELECT route_name FROM Delivery_Routes ORDER BY route_name | easy |
2,856 | customer_deliveries | [
"Delivery_Routes",
"Delivery_Route_Locations"
] | Find the name of route that has the highest number of deliveries. | SELECT t1.route_name FROM Delivery_Routes AS t1 JOIN Delivery_Route_Locations AS t2 ON t1.route_id = t2.route_id GROUP BY t1.route_id ORDER BY count(*) DESC LIMIT 1 | extra |
2,857 | customer_deliveries | [
"addresses",
"customer_addresses"
] | List the state names and the number of customers living in each state. | SELECT t2.state_province_county , count(*) FROM customer_addresses AS t1 JOIN addresses AS t2 ON t1.address_id = t2.address_id GROUP BY t2.state_province_county | medium |
2,858 | icfp_1 | [
"authors"
] | How many authors are there? | SELECT count(*) FROM authors | easy |
2,859 | icfp_1 | [
"authors"
] | Count the number of authors. | SELECT count(*) FROM authors | easy |
2,860 | icfp_1 | [
"inst"
] | How many institutions are there? | SELECT count(*) FROM inst | easy |
2,861 | icfp_1 | [
"inst"
] | Count the number of institutions. | SELECT count(*) FROM inst | easy |
2,862 | icfp_1 | [
"papers"
] | How many papers are published in total? | SELECT count(*) FROM papers | easy |
2,863 | icfp_1 | [
"papers"
] | Count the number of total papers. | SELECT count(*) FROM papers | easy |
2,864 | icfp_1 | [
"authorship",
"authors",
"papers"
] | What are the titles of papers published by "Jeremy Gibbons"? | 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 WHERE t1.fname = "Jeremy" AND t1.lname = "Gibbons" | hard |
2,865 | icfp_1 | [
"authorship",
"authors",
"papers"
] | Find the titles of all the papers written by "Jeremy Gibbons" | 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 WHERE t1.fname = "Jeremy" AND t1.lname = "Gibbons" | hard |
2,866 | icfp_1 | [
"authorship",
"authors",
"papers"
] | Find all the papers published by "Aaron Turon". | 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 WHERE t1.fname = "Aaron" AND t1.lname = "Turon" | hard |
2,867 | icfp_1 | [
"authorship",
"authors",
"papers"
] | Find the titles of all the papers written by "Aaron Turon". | 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 WHERE t1.fname = "Aaron" AND t1.lname = "Turon" | hard |
2,868 | icfp_1 | [
"authorship",
"authors",
"papers"
] | How many papers have "Atsushi Ohori" published? | SELECT count(*) FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Atsushi" AND t1.lname = "Ohori" | hard |
2,869 | icfp_1 | [
"authorship",
"authors",
"papers"
] | How many papers are "Atsushi Ohori" the author of? | SELECT count(*) FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t1.fname = "Atsushi" AND t1.lname = "Ohori" | hard |
2,870 | icfp_1 | [
"authorship",
"inst",
"authors"
] | What is the name of the institution that "Matthias Blume" belongs to? | SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = "Matthias" AND t1.lname = "Blume" | hard |
2,871 | icfp_1 | [
"authorship",
"inst",
"authors"
] | Which institution is the author "Matthias Blume" belong to? Give me the name of the institution. | SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = "Matthias" AND t1.lname = "Blume" | hard |
2,872 | icfp_1 | [
"authorship",
"inst",
"authors"
] | Which institution does "Katsuhiro Ueno" belong to? | SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = "Katsuhiro" AND t1.lname = "Ueno" | hard |
2,873 | icfp_1 | [
"authorship",
"inst",
"authors"
] | What is the name of the institution the author "Katsuhiro Ueno" belongs to? | SELECT DISTINCT t3.name FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t1.fname = "Katsuhiro" AND t1.lname = "Ueno" | hard |
2,874 | icfp_1 | [
"authorship",
"inst",
"authors"
] | Who belong to the institution "University of Oxford"? Show the first names and last names. | SELECT DISTINCT t1.fname , t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "University of Oxford" | hard |
2,875 | icfp_1 | [
"authorship",
"inst",
"authors"
] | Find the first names and last names of the authors whose institution affiliation is "University of Oxford". | SELECT DISTINCT t1.fname , t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "University of Oxford" | hard |
2,876 | icfp_1 | [
"authorship",
"inst",
"authors"
] | Which authors belong to the institution "Google"? Show the first names and last names. | SELECT DISTINCT t1.fname , t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Google" | hard |
2,877 | icfp_1 | [
"authorship",
"inst",
"authors"
] | Find the first names and last names of the authors whose institution affiliation is "Google". | SELECT DISTINCT t1.fname , t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Google" | hard |
2,878 | icfp_1 | [
"authorship",
"authors",
"papers"
] | What are the last names of the author of the paper titled "Binders Unbound"? | SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = "Binders Unbound" | hard |
2,879 | icfp_1 | [
"authorship",
"authors",
"papers"
] | Who is the author of the paper titled "Binders Unbound"? Give me the last name. | SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = "Binders Unbound" | hard |
2,880 | icfp_1 | [
"authorship",
"authors",
"papers"
] | Find the first and last name of the author(s) who wrote the paper "Nameless, Painless". | SELECT t1.fname , t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = "Nameless , Painless" | hard |
2,881 | icfp_1 | [
"authorship",
"authors",
"papers"
] | What are the first and last name of the author who published the paper titled "Nameless, Painless"? | SELECT t1.fname , t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid WHERE t3.title = "Nameless , Painless" | hard |
2,882 | icfp_1 | [
"authorship",
"inst",
"papers"
] | What are the papers published under the institution "Indiana University"? | SELECT DISTINCT t1.title FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Indiana University" | hard |
2,883 | icfp_1 | [
"authorship",
"inst",
"papers"
] | List the titles of the papers whose authors are from the institution "Indiana University". | SELECT DISTINCT t1.title FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Indiana University" | hard |
2,884 | icfp_1 | [
"authorship",
"inst",
"papers"
] | Find all the papers published by the institution "Google". | SELECT DISTINCT t1.title FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Google" | hard |
2,885 | icfp_1 | [
"authorship",
"inst",
"papers"
] | Which papers were written by authors from the institution "Google"? | SELECT DISTINCT t1.title FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Google" | hard |
2,886 | icfp_1 | [
"authorship",
"inst",
"papers"
] | How many papers are published by the institution "Tokohu University"? | SELECT count(DISTINCT t1.title) FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Tokohu University" | hard |
2,887 | icfp_1 | [
"authorship",
"inst",
"papers"
] | Find the number of papers published by authors from the institution "Tokohu University". | SELECT count(DISTINCT t1.title) FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "Tokohu University" | hard |
2,888 | icfp_1 | [
"authorship",
"inst",
"papers"
] | Find the number of papers published by the institution "University of Pennsylvania". | SELECT count(DISTINCT t1.title) FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "University of Pennsylvania" | hard |
2,889 | icfp_1 | [
"authorship",
"inst",
"papers"
] | How many papers are written by authors from the institution "University of Pennsylvania"? | SELECT count(DISTINCT t1.title) FROM papers AS t1 JOIN authorship AS t2 ON t1.paperid = t2.paperid JOIN inst AS t3 ON t2.instid = t3.instid WHERE t3.name = "University of Pennsylvania" | hard |
2,890 | icfp_1 | [
"authorship",
"authors",
"papers"
] | Find the papers which have "Olin Shivers" as an author. | 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 WHERE t1.fname = "Olin" AND t1.lname = "Shivers" | hard |
2,891 | icfp_1 | [
"authorship",
"authors",
"papers"
] | Which papers did the author "Olin Shivers" write? Give me the paper titles. | 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 WHERE t1.fname = "Olin" AND t1.lname = "Shivers" | hard |
2,892 | icfp_1 | [
"authorship",
"authors",
"papers"
] | Which papers have "Stephanie Weirich" as an author? | 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 WHERE t1.fname = "Stephanie" AND t1.lname = "Weirich" | hard |
2,893 | icfp_1 | [
"authorship",
"authors",
"papers"
] | Find the titles of the papers the author "Stephanie Weirich" wrote. | 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 WHERE t1.fname = "Stephanie" AND t1.lname = "Weirich" | hard |
2,894 | icfp_1 | [
"authorship",
"inst",
"authors",
"papers"
] | Which paper is published in an institution in "USA" and have "Turon" as its second author? | 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 = "USA" AND t2.authorder = 2 AND t1.lname = "Turon" | extra |
2,895 | icfp_1 | [
"authorship",
"inst",
"authors",
"papers"
] | Find papers whose second author has last name "Turon" and is affiliated with an institution in the country "USA". | 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 = "USA" AND t2.authorder = 2 AND t1.lname = "Turon" | extra |
2,896 | icfp_1 | [
"authorship",
"inst",
"authors",
"papers"
] | 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" | extra |
2,897 | icfp_1 | [
"authorship",
"inst",
"authors",
"papers"
] | Which papers' first author is affiliated with an institution in the country "Japan" and has last name "Ohori"? Give me the titles of the papers. | 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" | extra |
2,898 | icfp_1 | [
"authorship",
"authors",
"papers"
] | What is the last name of the author that has published the most papers? | SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid GROUP BY t1.fname , t1.lname ORDER BY count(*) DESC LIMIT 1 | extra |
2,899 | icfp_1 | [
"authorship",
"authors",
"papers"
] | Which author has written the most papers? Find his or her last name. | SELECT t1.lname FROM authors AS t1 JOIN authorship AS t2 ON t1.authid = t2.authid JOIN papers AS t3 ON t2.paperid = t3.paperid GROUP BY t1.fname , t1.lname ORDER BY count(*) DESC LIMIT 1 | extra |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.