prompt stringlengths 155 8.09k | answer stringlengths 18 577 |
|---|---|
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the dates that have an average sea level pressure between 30.3 and 31?, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count IN... | SELECT date FROM weather WHERE mean_sea_level_pressure_inches BETWEEN 30.3 AND 31 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the day in which the difference between the max temperature and min temperature was the smallest. Also report the difference., schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT... | SELECT date , max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the days that had the smallest temperature range, and what was that range?, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_coun... | SELECT date , max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the id and name of the stations that have ever had more than 12 bikes available?, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, doc... | SELECT DISTINCT T1.id , T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id WHERE T2.bikes_available > 12 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the different ids and names of the stations that have had more than 12 bikes available?, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC,... | SELECT DISTINCT T1.id , T1.name FROM station AS T1 JOIN status AS T2 ON T1.id = T2.station_id WHERE T2.bikes_available > 12 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place., schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMER... | SELECT zip_code FROM weather GROUP BY zip_code HAVING avg(mean_humidity) < 70 INTERSECT SELECT zip_code FROM trip GROUP BY zip_code HAVING count(*) >= 100 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the zip codes that have an average mean humidity below 70 and had at least 100 trips come through there?, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC,... | SELECT zip_code FROM weather GROUP BY zip_code HAVING avg(mean_humidity) < 70 INTERSECT SELECT zip_code FROM trip GROUP BY zip_code HAVING count(*) >= 100 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the names of stations that are located in Palo Alto city but have never been the ending point of trips more than 100 times?, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TE... | SELECT name FROM station WHERE city = "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING count(*) > 100 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the names of the stations that are located in Palo Alto but have never been the ending point of the trips, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC... | SELECT name FROM station WHERE city = "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING count(*) > 100 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:How many trips started from Mountain View city and ended at Palo Alto city?, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count INTEGE... | SELECT count(*) FROM station AS T1 JOIN trip AS T2 JOIN station AS T3 JOIN trip AS T4 ON T1.id = T2.start_station_id AND T2.id = T4.id AND T3.id = T4.end_station_id WHERE T1.city = "Mountain View" AND T3.city = "Palo Alto" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:How many trips stated from a station in Mountain View and ended at one in Palo Alto?, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_co... | SELECT count(*) FROM station AS T1 JOIN trip AS T2 JOIN station AS T3 JOIN trip AS T4 ON T1.id = T2.start_station_id AND T2.id = T4.id AND T3.id = T4.end_station_id WHERE T1.city = "Mountain View" AND T3.city = "Palo Alto" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What is the average latitude and longitude of the starting points of all trips?, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count IN... | SELECT avg(T1.lat) , avg(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What is the average latitude and longitude of all starting stations for the trips?, schema:CREATE TABLE station ( id INTEGER PRIMARY KEY, name TEXT, lat NUMERIC, long NUMERIC, dock_count... | SELECT avg(T1.lat) , avg(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:How many books are there?, schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("Publication_ID"),FOREIGN KEY ("Book_... | SELECT count(*) FROM book |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the writers of the books in ascending alphabetical order., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY (... | SELECT Writer FROM book ORDER BY Writer ASC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the titles of the books in ascending order of issues., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("Pub... | SELECT Title FROM book ORDER BY Issues ASC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the titles of the books whose writer is not "Elaine Lee"?, schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY K... | SELECT Title FROM book WHERE Writer != "Elaine Lee" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the title and issues of the books?, schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("Publication_ID"),F... | SELECT Title , Issues FROM book |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the dates of publications in descending order of price?, schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY... | SELECT Publication_Date FROM publication ORDER BY Price DESC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the distinct publishers of publications with price higher than 5000000?, schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" ... | SELECT DISTINCT Publisher FROM publication WHERE Price > 5000000 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the publisher of the publication with the highest price., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("... | SELECT Publisher FROM publication ORDER BY Price DESC LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the publication dates of publications with 3 lowest prices., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY... | SELECT Publication_Date FROM publication ORDER BY Price ASC LIMIT 3 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show the title and publication dates of books., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("Publication_ID"... | SELECT T1.Title , T2.Publication_Date FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show writers who have published a book with price more than 4000000., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY... | SELECT T1.Writer FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID WHERE T2.Price > 4000000 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show the titles of books in descending order of publication price., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY K... | SELECT T1.Title FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID ORDER BY T2.Price DESC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show publishers that have more than one publication., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("Publicati... | SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show different publishers together with the number of publications they have., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" rea... | SELECT Publisher , COUNT(*) FROM publication GROUP BY Publisher |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Please show the most common publication date., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("Publication_ID")... | SELECT Publication_Date FROM publication GROUP BY Publication_Date ORDER BY COUNT(*) DESC LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the writers who have written more than one book., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("Publicat... | SELECT Writer FROM book GROUP BY Writer HAVING COUNT(*) > 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the titles of books that are not published., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("Publication_I... | SELECT Title FROM book WHERE Book_ID NOT IN (SELECT Book_ID FROM publication) |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show the publishers that have publications with price higher than 10000000 and publications with price lower than 5000000., schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publis... | SELECT Publisher FROM publication WHERE Price > 10000000 INTERSECT SELECT Publisher FROM publication WHERE Price < 5000000 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What is the number of distinct publication dates?, schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("Publication_... | SELECT COUNT (DISTINCT Publication_Date) FROM publication |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:How many distinct publication dates are there in our record?, schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" real,PRIMARY KEY ("P... | SELECT COUNT (DISTINCT Publication_Date) FROM publication |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show the prices of publications whose publisher is either "Person" or "Wiley", schema:CREATE TABLE "publication" ("Publication_ID" int,"Book_ID" int,"Publisher" text,"Publication_Date" text,"Price" rea... | SELECT Price FROM publication WHERE Publisher = "Person" OR Publisher = "Wiley" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:How many actors are there?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Musical_ID")); CREATE TABLE "a... | SELECT count(*) FROM actor |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Count the number of actors., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Musical_ID")); CREATE TABLE "... | SELECT count(*) FROM actor |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the name of actors in ascending alphabetical order., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("... | SELECT Name FROM actor ORDER BY Name ASC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the names of actors, ordered alphabetically?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Mus... | SELECT Name FROM actor ORDER BY Name ASC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the characters and duration of actors?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Musical_I... | SELECT Character , Duration FROM actor |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Return the characters and durations for each actor., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Music... | SELECT Character , Duration FROM actor |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the name of actors whose age is not 20., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Musical_ID")... | SELECT Name FROM actor WHERE Age != 20 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the names of actors who are not 20 years old?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Mu... | SELECT Name FROM actor WHERE Age != 20 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the characters of actors in descending order of age?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY K... | SELECT Character FROM actor ORDER BY age DESC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Return the characters for actors, ordered by age descending., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KE... | SELECT Character FROM actor ORDER BY age DESC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What is the duration of the oldest actor?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Musical_ID")); ... | SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Return the duration of the actor with the greatest age., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("M... | SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the names of musicals with nominee "Bob Fosse"?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("... | SELECT Name FROM musical WHERE Nominee = "Bob Fosse" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Return the names of musicals who have the nominee Bob Fosse., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KE... | SELECT Name FROM musical WHERE Nominee = "Bob Fosse" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the distinct nominees of the musicals with the award that is not "Tony Award"?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" te... | SELECT DISTINCT Nominee FROM musical WHERE Award != "Tony Award" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Return the different nominees of musicals that have an award that is not the Tony Award., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" t... | SELECT DISTINCT Nominee FROM musical WHERE Award != "Tony Award" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show names of actors and names of musicals they are in., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("M... | SELECT T1.Name , T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the names of actors and the musicals that they are in?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY... | SELECT T1.Name , T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show names of actors that have appeared in musical with name "The Phantom of the Opera"., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" t... | SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID WHERE T2.Name = "The Phantom of the Opera" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the names of actors who have been in the musical titled The Phantom of the Opera?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee"... | SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID WHERE T2.Name = "The Phantom of the Opera" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show names of actors in descending order of the year their musical is awarded., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Resul... | SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the names of actors ordered descending by the year in which their musical was awarded?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nom... | SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show names of musicals and the number of actors who have appeared in the musicals., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"R... | SELECT T2.Name , COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:How many actors have appeared in each musical?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Musical_ID... | SELECT T2.Name , COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show names of musicals which have at least three actors., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("... | SELECT T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID HAVING COUNT(*) >= 3 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the names of musicals who have at 3 or more actors?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KE... | SELECT T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID HAVING COUNT(*) >= 3 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show different nominees and the number of musicals they have been nominated., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result"... | SELECT Nominee , COUNT(*) FROM musical GROUP BY Nominee |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:How many musicals has each nominee been nominated for?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Mu... | SELECT Nominee , COUNT(*) FROM musical GROUP BY Nominee |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Please show the nominee who has been nominated the greatest number of times., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result"... | SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Who is the nominee who has been nominated for the most musicals?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMAR... | SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the most common result of the musicals., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Musical_ID")... | SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Return the most frequent result across all musicals., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Musi... | SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the nominees that have been nominated more than two musicals., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIM... | SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Who are the nominees who have been nominated more than two times?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMA... | SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the name of musicals that do not have actors., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Musica... | SELECT Name FROM musical WHERE Musical_ID NOT IN (SELECT Musical_ID FROM actor) |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What are the names of musicals who have no actors?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text,PRIMARY KEY ("Musica... | SELECT Name FROM musical WHERE Musical_ID NOT IN (SELECT Musical_ID FROM actor) |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show the nominees that have nominated musicals for both "Tony Award" and "Drama Desk Award"., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nomine... | SELECT Nominee FROM musical WHERE Award = "Tony Award" INTERSECT SELECT Nominee FROM musical WHERE Award = "Drama Desk Award" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Who are the nominees who have been nominated for both a Tony Award and a Drama Desk Award?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee"... | SELECT Nominee FROM musical WHERE Award = "Tony Award" INTERSECT SELECT Nominee FROM musical WHERE Award = "Drama Desk Award" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Show the musical nominee with award "Bob Fosse" or "Cleavant Derricks"., schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"Nominee" text,"Result" text... | SELECT Nominee FROM musical WHERE Award = "Tony Award" OR Award = "Cleavant Derricks" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Who are the nominees who were nominated for either of the Bob Fosse or Cleavant Derricks awards?, schema:CREATE TABLE "musical" ("Musical_ID" int,"Name" text,"Year" int,"Award" text,"Category" text,"No... | SELECT Nominee FROM musical WHERE Award = "Tony Award" OR Award = "Cleavant Derricks" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the emails of the user named "Mary"., schema:NA | SELECT email FROM user_profiles WHERE name = 'Mary' |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:What is the partition id of the user named "Iron Man"., schema:NA | SELECT partitionid FROM user_profiles WHERE name = 'Iron Man' |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:How many users are there?, schema:NA | SELECT count(*) FROM user_profiles |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:How many followers does each user have?, schema:NA | SELECT count(*) FROM follows |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the number of followers for each user., schema:NA | SELECT count(*) FROM follows GROUP BY f1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the number of tweets in record., schema:NA | SELECT count(*) FROM tweets |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the number of users who posted some tweets., schema:NA | SELECT count(DISTINCT UID) FROM tweets |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the name and email of the user whose name contains the word ‘Swift’., schema:NA | SELECT name , email FROM user_profiles WHERE name LIKE '%Swift%' |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the names of users whose emails contain ‘superstar’ or ‘edu’., schema:NA | SELECT name FROM user_profiles WHERE email LIKE '%superstar%' OR email LIKE '%edu%' |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Return the text of tweets about the topic 'intern'., schema:NA | SELECT text FROM tweets WHERE text LIKE '%intern%' |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the name and email of the users who have more than 1000 followers., schema:NA | SELECT name , email FROM user_profiles WHERE followers > 1000 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the names of the users whose number of followers is greater than that of the user named "Tyler Swift"., schema:NA | SELECT T1.name FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 GROUP BY T2.f1 HAVING count(*) > (SELECT count(*) FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 WHERE T1.name = 'Tyler Swift') |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the name and email for the users who have more than one follower., schema:NA | SELECT T1.name , T1.email FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f1 GROUP BY T2.f1 HAVING count(*) > 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the names of users who have more than one tweet., schema:NA | SELECT T1.name FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING count(*) > 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the id of users who are followed by Mary and Susan., schema:NA | SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Mary" INTERSECT SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Susan" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the id of users who are followed by Mary or Susan., schema:NA | SELECT T2.f1 FROM user_profiles AS T1 JOIN follows AS T2 ON T1.uid = T2.f2 WHERE T1.name = "Mary" OR T1.name = "Susan" |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the name of the user who has the largest number of followers., schema:NA | SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the name and email of the user followed by the least number of people., schema:NA | SELECT name , email FROM user_profiles ORDER BY followers LIMIT 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the name and number of followers for each user, and sort the results by the number of followers in descending order., schema:NA | SELECT name , followers FROM user_profiles ORDER BY followers DESC |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the names of 5 users followed by the largest number of other users., schema:NA | SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 5 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:List the text of all tweets in the order of date., schema:NA | SELECT text FROM tweets ORDER BY createdate |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the name of each user and number of tweets tweeted by each of them., schema:NA | SELECT T1.name , count(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the name and partition id for users who tweeted less than twice., schema:NA | SELECT T1.name , T1.partitionid FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING count(*) < 2 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the name of the user who tweeted more than once, and number of tweets tweeted by them., schema:NA | SELECT T1.name , count(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING count(*) > 1 |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the average number of followers for the users who do not have any tweet., schema:NA | SELECT avg(followers) FROM user_profiles WHERE UID NOT IN (SELECT UID FROM tweets) |
You are an excellent developer. Please make an SQL query based on the instructions and the provided schema.Instruction:Find the average number of followers for the users who had some tweets., schema:NA | SELECT avg(followers) FROM user_profiles WHERE UID IN (SELECT UID FROM tweets) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.