SQL
stringlengths 18
577
| question
stringlengths 317
11.5k
|
---|---|
SELECT date FROM weather WHERE mean_sea_level_pressure_inches BETWEEN 30.3 AND 31 | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. What are the dates that have an average sea level pressure between 30.3 and 31? |
SELECT date , max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1 | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. Find the day in which the difference between the max temperature and min temperature was the smallest. Also report the difference. |
SELECT date , max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1 | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. What are the days that had the smallest temperature range, and what was that range? |
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 | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. What are the id and name of the stations that have ever had more than 12 bikes available? |
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 | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. What are the different ids and names of the stations that have had more than 12 bikes available? |
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 | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place. |
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 | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. What are the zip codes that have an average mean humidity below 70 and had at least 100 trips come through there? |
SELECT name FROM station WHERE city = "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING count(*) > 100 | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. 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? |
SELECT name FROM station WHERE city = "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING count(*) > 100 | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. What are the names of the stations that are located in Palo Alto but have never been the ending point of the trips |
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" | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. How many trips started from Mountain View city and ended at Palo Alto city? |
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" | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. How many trips stated from a station in Mountain View and ended at one in Palo Alto? |
SELECT avg(T1.lat) , avg(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. What is the average latitude and longitude of the starting points of all trips? |
SELECT avg(T1.lat) , avg(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id | Given the Table station having columns as id has datatype number, name has datatype text, lat has datatype number, long has datatype number, dock_count has datatype number, city has datatype text, installation_date has datatype text which has id and Given the Table status having columns as station_id has datatype number, bikes_available has datatype number, docks_available has datatype number, time has datatype text which has id and Given the Table trip having columns as id has datatype number, duration has datatype number, start_date has datatype text, start_station_name has datatype text, start_station_id has datatype number, end_date has datatype text, end_station_name has datatype text, end_station_id has datatype number, bike_id has datatype number, subscription_type has datatype text, zip_code has datatype number which has NO_PRIMARY_KEY and Given the Table weather having columns as date has datatype text, max_temperature_f has datatype number, mean_temperature_f has datatype number, min_temperature_f has datatype number, max_dew_point_f has datatype number, mean_dew_point_f has datatype number, min_dew_point_f has datatype number, max_humidity has datatype number, mean_humidity has datatype number, min_humidity has datatype number, max_sea_level_pressure_inches has datatype number, mean_sea_level_pressure_inches has datatype number, min_sea_level_pressure_inches has datatype number, max_visibility_miles has datatype number, mean_visibility_miles has datatype number, min_visibility_miles has datatype number, max_wind_Speed_mph has datatype number, mean_wind_speed_mph has datatype number, max_gust_speed_mph has datatype number, precipitation_inches has datatype number, cloud_cover has datatype number, events has datatype text, wind_dir_degrees has datatype number, zip_code has datatype number which has NO_PRIMARY_KEY. Answer the question by writing the appropriate SQL code. What is the average latitude and longitude of all starting stations for the trips? |
SELECT count(*) FROM book | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. How many books are there? |
SELECT Writer FROM book ORDER BY Writer ASC | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. List the writers of the books in ascending alphabetical order. |
SELECT Title FROM book ORDER BY Issues ASC | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. List the titles of the books in ascending order of issues. |
SELECT Title FROM book WHERE Writer != "Elaine Lee" | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. What are the titles of the books whose writer is not "Elaine Lee"? |
SELECT Title , Issues FROM book | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. What are the title and issues of the books? |
SELECT Publication_Date FROM publication ORDER BY Price DESC | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. What are the dates of publications in descending order of price? |
SELECT DISTINCT Publisher FROM publication WHERE Price > 5000000 | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. What are the distinct publishers of publications with price higher than 5000000? |
SELECT Publisher FROM publication ORDER BY Price DESC LIMIT 1 | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. List the publisher of the publication with the highest price. |
SELECT Publication_Date FROM publication ORDER BY Price ASC LIMIT 3 | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. List the publication dates of publications with 3 lowest prices. |
SELECT T1.Title , T2.Publication_Date FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. Show the title and publication dates of books. |
SELECT T1.Writer FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID WHERE T2.Price > 4000000 | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. Show writers who have published a book with price more than 4000000. |
SELECT T1.Title FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID ORDER BY T2.Price DESC | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. Show the titles of books in descending order of publication price. |
SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1 | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. Show publishers that have more than one publication. |
SELECT Publisher , COUNT(*) FROM publication GROUP BY Publisher | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. Show different publishers together with the number of publications they have. |
SELECT Publication_Date FROM publication GROUP BY Publication_Date ORDER BY COUNT(*) DESC LIMIT 1 | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. Please show the most common publication date. |
SELECT Writer FROM book GROUP BY Writer HAVING COUNT(*) > 1 | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. List the writers who have written more than one book. |
SELECT Title FROM book WHERE Book_ID NOT IN (SELECT Book_ID FROM publication) | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. List the titles of books that are not published. |
SELECT Publisher FROM publication WHERE Price > 10000000 INTERSECT SELECT Publisher FROM publication WHERE Price < 5000000 | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. Show the publishers that have publications with price higher than 10000000 and publications with price lower than 5000000. |
SELECT COUNT (DISTINCT Publication_Date) FROM publication | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. What is the number of distinct publication dates? |
SELECT COUNT (DISTINCT Publication_Date) FROM publication | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. How many distinct publication dates are there in our record? |
SELECT Price FROM publication WHERE Publisher = "Person" OR Publisher = "Wiley" | Given the Table publication having columns as Publication_ID has datatype number, Book_ID has datatype number, Publisher has datatype text, Publication_Date has datatype text, Price has datatype number which has Publication_ID and Given the Table book having columns as Book_ID has datatype number, Title has datatype text, Issues has datatype number, Writer has datatype text which has Book_ID. Answer the question by writing the appropriate SQL code. Show the prices of publications whose publisher is either "Person" or "Wiley" |
SELECT count(*) FROM actor | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. How many actors are there? |
SELECT count(*) FROM actor | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Count the number of actors. |
SELECT Name FROM actor ORDER BY Name ASC | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. List the name of actors in ascending alphabetical order. |
SELECT Name FROM actor ORDER BY Name ASC | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the names of actors, ordered alphabetically? |
SELECT Character , Duration FROM actor | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the characters and duration of actors? |
SELECT Character , Duration FROM actor | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Return the characters and durations for each actor. |
SELECT Name FROM actor WHERE Age != 20 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. List the name of actors whose age is not 20. |
SELECT Name FROM actor WHERE Age != 20 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the names of actors who are not 20 years old? |
SELECT Character FROM actor ORDER BY age DESC | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the characters of actors in descending order of age? |
SELECT Character FROM actor ORDER BY age DESC | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Return the characters for actors, ordered by age descending. |
SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What is the duration of the oldest actor? |
SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Return the duration of the actor with the greatest age. |
SELECT Name FROM musical WHERE Nominee = "Bob Fosse" | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the names of musicals with nominee "Bob Fosse"? |
SELECT Name FROM musical WHERE Nominee = "Bob Fosse" | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Return the names of musicals who have the nominee Bob Fosse. |
SELECT DISTINCT Nominee FROM musical WHERE Award != "Tony Award" | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the distinct nominees of the musicals with the award that is not "Tony Award"? |
SELECT DISTINCT Nominee FROM musical WHERE Award != "Tony Award" | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Return the different nominees of musicals that have an award that is not the Tony Award. |
SELECT T1.Name , T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Show names of actors and names of musicals they are in. |
SELECT T1.Name , T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the names of actors and the musicals that they are in? |
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" | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Show names of actors that have appeared in musical with name "The Phantom of the Opera". |
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" | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the names of actors who have been in the musical titled The Phantom of the Opera? |
SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Show names of actors in descending order of the year their musical is awarded. |
SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the names of actors ordered descending by the year in which their musical was awarded? |
SELECT T2.Name , COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Show names of musicals and the number of actors who have appeared in the musicals. |
SELECT T2.Name , COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. How many actors have appeared in each musical? |
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 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Show names of musicals which have at least three actors. |
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 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the names of musicals who have at 3 or more actors? |
SELECT Nominee , COUNT(*) FROM musical GROUP BY Nominee | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Show different nominees and the number of musicals they have been nominated. |
SELECT Nominee , COUNT(*) FROM musical GROUP BY Nominee | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. How many musicals has each nominee been nominated for? |
SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Please show the nominee who has been nominated the greatest number of times. |
SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Who is the nominee who has been nominated for the most musicals? |
SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. List the most common result of the musicals. |
SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Return the most frequent result across all musicals. |
SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. List the nominees that have been nominated more than two musicals. |
SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2 | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Who are the nominees who have been nominated more than two times? |
SELECT Name FROM musical WHERE Musical_ID NOT IN (SELECT Musical_ID FROM actor) | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. List the name of musicals that do not have actors. |
SELECT Name FROM musical WHERE Musical_ID NOT IN (SELECT Musical_ID FROM actor) | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. What are the names of musicals who have no actors? |
SELECT Nominee FROM musical WHERE Award = "Tony Award" INTERSECT SELECT Nominee FROM musical WHERE Award = "Drama Desk Award" | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Show the nominees that have nominated musicals for both "Tony Award" and "Drama Desk Award". |
SELECT Nominee FROM musical WHERE Award = "Tony Award" INTERSECT SELECT Nominee FROM musical WHERE Award = "Drama Desk Award" | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Who are the nominees who have been nominated for both a Tony Award and a Drama Desk Award? |
SELECT Nominee FROM musical WHERE Award = "Tony Award" OR Award = "Cleavant Derricks" | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Show the musical nominee with award "Bob Fosse" or "Cleavant Derricks". |
SELECT Nominee FROM musical WHERE Award = "Tony Award" OR Award = "Cleavant Derricks" | Given the Table musical having columns as Musical_ID has datatype number, Name has datatype text, Year has datatype number, Award has datatype text, Category has datatype text, Nominee has datatype text, Result has datatype text which has Musical_ID and Given the Table actor having columns as Actor_ID has datatype number, Name has datatype text, Musical_ID has datatype number, Character has datatype text, Duration has datatype text, age has datatype number which has Actor_ID. Answer the question by writing the appropriate SQL code. Who are the nominees who were nominated for either of the Bob Fosse or Cleavant Derricks awards? |
SELECT email FROM user_profiles WHERE name = 'Mary' | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the emails of the user named "Mary". |
SELECT partitionid FROM user_profiles WHERE name = 'Iron Man' | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. What is the partition id of the user named "Iron Man". |
SELECT count(*) FROM user_profiles | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. How many users are there? |
SELECT count(*) FROM follows | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. How many followers does each user have? |
SELECT count(*) FROM follows GROUP BY f1 | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the number of followers for each user. |
SELECT count(*) FROM tweets | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the number of tweets in record. |
SELECT count(DISTINCT UID) FROM tweets | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the number of users who posted some tweets. |
SELECT name , email FROM user_profiles WHERE name LIKE '%Swift%' | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the name and email of the user whose name contains the word ‘Swift’. |
SELECT name FROM user_profiles WHERE email LIKE '%superstar%' OR email LIKE '%edu%' | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the names of users whose emails contain ‘superstar’ or ‘edu’. |
SELECT text FROM tweets WHERE text LIKE '%intern%' | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Return the text of tweets about the topic 'intern'. |
SELECT name , email FROM user_profiles WHERE followers > 1000 | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the name and email of the users who have more than 1000 followers. |
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') | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the names of the users whose number of followers is greater than that of the user named "Tyler Swift". |
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 | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the name and email for the users who have more than one follower. |
SELECT T1.name FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid HAVING count(*) > 1 | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the names of users who have more than one tweet. |
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" | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the id of users who are followed by Mary and Susan. |
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" | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the id of users who are followed by Mary or Susan. |
SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 1 | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the name of the user who has the largest number of followers. |
SELECT name , email FROM user_profiles ORDER BY followers LIMIT 1 | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the name and email of the user followed by the least number of people. |
SELECT name , followers FROM user_profiles ORDER BY followers DESC | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. List the name and number of followers for each user, and sort the results by the number of followers in descending order. |
SELECT name FROM user_profiles ORDER BY followers DESC LIMIT 5 | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. List the names of 5 users followed by the largest number of other users. |
SELECT text FROM tweets ORDER BY createdate | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. List the text of all tweets in the order of date. |
SELECT T1.name , count(*) FROM user_profiles AS T1 JOIN tweets AS T2 ON T1.uid = T2.uid GROUP BY T2.uid | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the name of each user and number of tweets tweeted by each of them. |
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 | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the name and partition id for users who tweeted less than twice. |
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 | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the name of the user who tweeted more than once, and number of tweets tweeted by them. |
SELECT avg(followers) FROM user_profiles WHERE UID NOT IN (SELECT UID FROM tweets) | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the average number of followers for the users who do not have any tweet. |
SELECT avg(followers) FROM user_profiles WHERE UID IN (SELECT UID FROM tweets) | Given the Table follows having columns as f1 has datatype number, f2 has datatype number which has f1 and Given the Table tweets having columns as id has datatype number, uid has datatype number, text has datatype text, createdate has datatype time which has id and Given the Table user profiles having columns as uid has datatype number, name has datatype text, email has datatype text, partitionid has datatype number, followers has datatype number which has uid. Answer the question by writing the appropriate SQL code. Find the average number of followers for the users who had some tweets. |