question
stringlengths 16
224
| schema
stringlengths 142
5.86k
| query
stringlengths 20
577
|
---|---|---|
What are the dates that have an average sea level pressure between 30.3 and 31? | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | SELECT date FROM weather WHERE mean_sea_level_pressure_inches BETWEEN 30.3 AND 31 |
Find the day in which the difference between the max temperature and min temperature was the smallest. Also report the difference. | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | SELECT date , max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1 |
What are the days that had the smallest temperature range, and what was that range? | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | SELECT date , max_temperature_f - min_temperature_f FROM weather ORDER BY max_temperature_f - min_temperature_f LIMIT 1 |
What are the id and name of the stations that have ever had more than 12 bikes available? | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | 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 |
What are the different ids and names of the stations that have had more than 12 bikes available? | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | 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 |
Give me the zip code where the average mean humidity is below 70 and at least 100 trips took place. | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | 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 |
What are the zip codes that have an average mean humidity below 70 and had at least 100 trips come through there? | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | 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 |
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? | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | SELECT name FROM station WHERE city = "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING count(*) > 100 |
What are the names of the stations that are located in Palo Alto but have never been the ending point of the trips | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | SELECT name FROM station WHERE city = "Palo Alto" EXCEPT SELECT end_station_name FROM trip GROUP BY end_station_name HAVING count(*) > 100 |
How many trips started from Mountain View city and ended at Palo Alto city? | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | 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" |
How many trips stated from a station in Mountain View and ended at one in Palo Alto? | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | 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" |
What is the average latitude and longitude of the starting points of all trips? | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | SELECT avg(T1.lat) , avg(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id |
What is the average latitude and longitude of all starting stations for the trips? | station: id (INTEGER), name (TEXT), lat (NUMERIC), long (NUMERIC), dock_count (INTEGER), city (TEXT), installation_date (TEXT)
status: station_id (INTEGER), bikes_available (INTEGER), docks_available (INTEGER), time (TEXT)
trip: id (INTEGER), duration (INTEGER), start_date (TEXT), start_station_id (INTEGER), end_date (TEXT), end_station_id (INTEGER), bike_id (INTEGER), subscription_type (TEXT), zip_code (INTEGER)
weather: date (TEXT), max_temperature_f (INTEGER), mean_temperature_f (INTEGER), min_temperature_f (INTEGER), max_dew_point_f (INTEGER), mean_dew_point_f (INTEGER), min_dew_point_f (INTEGER), max_humidity (INTEGER), mean_humidity (INTEGER), min_humidity (INTEGER), max_sea_level_pressure_inches (NUMERIC), mean_sea_level_pressure_inches (NUMERIC), min_sea_level_pressure_inches (NUMERIC), max_visibility_miles (INTEGER), mean_visibility_miles (INTEGER), min_visibility_miles (INTEGER), max_wind_Speed_mph (INTEGER), mean_wind_speed_mph (INTEGER), max_gust_speed_mph (INTEGER), precipitation_inches (INTEGER), cloud_cover (INTEGER), events (TEXT), wind_dir_degrees (INTEGER), zip_code (INTEGER) | SELECT avg(T1.lat) , avg(T1.long) FROM station AS T1 JOIN trip AS T2 ON T1.id = T2.start_station_id |
How many books are there? | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT count(*) FROM book |
List the writers of the books in ascending alphabetical order. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Writer FROM book ORDER BY Writer ASC |
List the titles of the books in ascending order of issues. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Title FROM book ORDER BY Issues ASC |
What are the titles of the books whose writer is not "Elaine Lee"? | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Title FROM book WHERE Writer != "Elaine Lee" |
What are the title and issues of the books? | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Title , Issues FROM book |
What are the dates of publications in descending order of price? | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Publication_Date FROM publication ORDER BY Price DESC |
What are the distinct publishers of publications with price higher than 5000000? | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT DISTINCT Publisher FROM publication WHERE Price > 5000000 |
List the publisher of the publication with the highest price. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Publisher FROM publication ORDER BY Price DESC LIMIT 1 |
List the publication dates of publications with 3 lowest prices. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Publication_Date FROM publication ORDER BY Price ASC LIMIT 3 |
Show the title and publication dates of books. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT T1.Title , T2.Publication_Date FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID |
Show writers who have published a book with price more than 4000000. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT T1.Writer FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID WHERE T2.Price > 4000000 |
Show the titles of books in descending order of publication price. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT T1.Title FROM book AS T1 JOIN publication AS T2 ON T1.Book_ID = T2.Book_ID ORDER BY T2.Price DESC |
Show publishers that have more than one publication. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Publisher FROM publication GROUP BY Publisher HAVING COUNT(*) > 1 |
Show different publishers together with the number of publications they have. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Publisher , COUNT(*) FROM publication GROUP BY Publisher |
Please show the most common publication date. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Publication_Date FROM publication GROUP BY Publication_Date ORDER BY COUNT(*) DESC LIMIT 1 |
List the writers who have written more than one book. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Writer FROM book GROUP BY Writer HAVING COUNT(*) > 1 |
List the titles of books that are not published. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Title FROM book WHERE Book_ID NOT IN (SELECT Book_ID FROM publication) |
Show the publishers that have publications with price higher than 10000000 and publications with price lower than 5000000. | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Publisher FROM publication WHERE Price > 10000000 INTERSECT SELECT Publisher FROM publication WHERE Price < 5000000 |
What is the number of distinct publication dates? | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT COUNT (DISTINCT Publication_Date) FROM publication |
How many distinct publication dates are there in our record? | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT COUNT (DISTINCT Publication_Date) FROM publication |
Show the prices of publications whose publisher is either "Person" or "Wiley" | publication: Publication_ID (INT), Book_ID (INT), Publisher (TEXT), Publication_Date (TEXT), Price (REAL)
book: Book_ID (INT), Title (TEXT), Issues (REAL), Writer (TEXT) | SELECT Price FROM publication WHERE Publisher = "Person" OR Publisher = "Wiley" |
How many actors are there? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT count(*) FROM actor |
Count the number of actors. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT count(*) FROM actor |
List the name of actors in ascending alphabetical order. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Name FROM actor ORDER BY Name ASC |
What are the names of actors, ordered alphabetically? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Name FROM actor ORDER BY Name ASC |
What are the characters and duration of actors? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Character , Duration FROM actor |
Return the characters and durations for each actor. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Character , Duration FROM actor |
List the name of actors whose age is not 20. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Name FROM actor WHERE Age != 20 |
What are the names of actors who are not 20 years old? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Name FROM actor WHERE Age != 20 |
What are the characters of actors in descending order of age? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Character FROM actor ORDER BY age DESC |
Return the characters for actors, ordered by age descending. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Character FROM actor ORDER BY age DESC |
What is the duration of the oldest actor? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 |
Return the duration of the actor with the greatest age. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Duration FROM actor ORDER BY Age DESC LIMIT 1 |
What are the names of musicals with nominee "Bob Fosse"? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Name FROM musical WHERE Nominee = "Bob Fosse" |
Return the names of musicals who have the nominee Bob Fosse. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Name FROM musical WHERE Nominee = "Bob Fosse" |
What are the distinct nominees of the musicals with the award that is not "Tony Award"? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT DISTINCT Nominee FROM musical WHERE Award != "Tony Award" |
Return the different nominees of musicals that have an award that is not the Tony Award. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT DISTINCT Nominee FROM musical WHERE Award != "Tony Award" |
Show names of actors and names of musicals they are in. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT T1.Name , T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID |
What are the names of actors and the musicals that they are in? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT T1.Name , T2.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID |
Show names of actors that have appeared in musical with name "The Phantom of the Opera". | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | 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" |
What are the names of actors who have been in the musical titled The Phantom of the Opera? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | 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" |
Show names of actors in descending order of the year their musical is awarded. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC |
What are the names of actors ordered descending by the year in which their musical was awarded? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT T1.Name FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID ORDER BY T2.Year DESC |
Show names of musicals and the number of actors who have appeared in the musicals. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT T2.Name , COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID |
How many actors have appeared in each musical? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT T2.Name , COUNT(*) FROM actor AS T1 JOIN musical AS T2 ON T1.Musical_ID = T2.Musical_ID GROUP BY T1.Musical_ID |
Show names of musicals which have at least three actors. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | 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 |
What are the names of musicals who have at 3 or more actors? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | 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 |
Show different nominees and the number of musicals they have been nominated. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Nominee , COUNT(*) FROM musical GROUP BY Nominee |
How many musicals has each nominee been nominated for? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Nominee , COUNT(*) FROM musical GROUP BY Nominee |
Please show the nominee who has been nominated the greatest number of times. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 |
Who is the nominee who has been nominated for the most musicals? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Nominee FROM musical GROUP BY Nominee ORDER BY COUNT(*) DESC LIMIT 1 |
List the most common result of the musicals. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 |
Return the most frequent result across all musicals. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT RESULT FROM musical GROUP BY RESULT ORDER BY COUNT(*) DESC LIMIT 1 |
List the nominees that have been nominated more than two musicals. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2 |
Who are the nominees who have been nominated more than two times? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Nominee FROM musical GROUP BY Nominee HAVING COUNT(*) > 2 |
List the name of musicals that do not have actors. | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Name FROM musical WHERE Musical_ID NOT IN (SELECT Musical_ID FROM actor) |
What are the names of musicals who have no actors? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Name FROM musical WHERE Musical_ID NOT IN (SELECT Musical_ID FROM actor) |
Show the nominees that have nominated musicals for both "Tony Award" and "Drama Desk Award". | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Nominee FROM musical WHERE Award = "Tony Award" INTERSECT SELECT Nominee FROM musical WHERE Award = "Drama Desk Award" |
Who are the nominees who have been nominated for both a Tony Award and a Drama Desk Award? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Nominee FROM musical WHERE Award = "Tony Award" INTERSECT SELECT Nominee FROM musical WHERE Award = "Drama Desk Award" |
Show the musical nominee with award "Bob Fosse" or "Cleavant Derricks". | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Nominee FROM musical WHERE Award = "Tony Award" OR Award = "Cleavant Derricks" |
Who are the nominees who were nominated for either of the Bob Fosse or Cleavant Derricks awards? | musical: Musical_ID (INT), Name (TEXT), Year (INT), Award (TEXT), Category (TEXT), Nominee (TEXT), Result (TEXT)
actor: Actor_ID (INT), Name (TEXT), Musical_ID (INT), Character (TEXT), Duration (TEXT), age (INT) | SELECT Nominee FROM musical WHERE Award = "Tony Award" OR Award = "Cleavant Derricks" |
Find the names of all the catalog entries. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT distinct(catalog_entry_name) FROM catalog_contents |
What are all the catalog entry names? | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT distinct(catalog_entry_name) FROM catalog_contents |
Find the list of attribute data types possessed by more than 3 attribute definitions. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT attribute_data_type FROM Attribute_Definitions GROUP BY attribute_data_type HAVING count(*) > 3 |
What are the attribute data types with more than 3 attribute definitions? | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT attribute_data_type FROM Attribute_Definitions GROUP BY attribute_data_type HAVING count(*) > 3 |
What is the attribute data type of the attribute with name "Green"? | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT attribute_data_type FROM Attribute_Definitions WHERE attribute_name = "Green" |
Find the attribute data type for the attribute named "Green". | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT attribute_data_type FROM Attribute_Definitions WHERE attribute_name = "Green" |
Find the name and level of catalog structure with level between 5 and 10. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT catalog_level_name , catalog_level_number FROM Catalog_Structure WHERE catalog_level_number BETWEEN 5 AND 10 |
What are the name and level of catalog structure with level number between 5 and 10 | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT catalog_level_name , catalog_level_number FROM Catalog_Structure WHERE catalog_level_number BETWEEN 5 AND 10 |
Find all the catalog publishers whose name contains "Murray" | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT distinct(catalog_publisher) FROM catalogs WHERE catalog_publisher LIKE "%Murray%" |
Which catalog publishers have substring "Murray" in their names? | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT distinct(catalog_publisher) FROM catalogs WHERE catalog_publisher LIKE "%Murray%" |
Which catalog publisher has published the most catalogs? | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT catalog_publisher FROM catalogs GROUP BY catalog_publisher ORDER BY count(*) DESC LIMIT 1 |
Find the catalog publisher that has the most catalogs. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT catalog_publisher FROM catalogs GROUP BY catalog_publisher ORDER BY count(*) DESC LIMIT 1 |
Find the names and publication dates of all catalogs that have catalog level number greater than 5. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT t1.catalog_name , t1.date_of_publication FROM catalogs AS t1 JOIN catalog_structure AS t2 ON t1.catalog_id = t2.catalog_id WHERE catalog_level_number > 5 |
What are the name and publication date of the catalogs with catalog level number above 5? | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT t1.catalog_name , t1.date_of_publication FROM catalogs AS t1 JOIN catalog_structure AS t2 ON t1.catalog_id = t2.catalog_id WHERE catalog_level_number > 5 |
What are the entry names of catalog with the attribute possessed by most entries. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.attribute_value = (SELECT attribute_value FROM Catalog_Contents_Additional_Attributes GROUP BY attribute_value ORDER BY count(*) DESC LIMIT 1) |
Find the entry names of the catalog with the attribute that have the most entries. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT t1.catalog_entry_name FROM Catalog_Contents AS t1 JOIN Catalog_Contents_Additional_Attributes AS t2 ON t1.catalog_entry_id = t2.catalog_entry_id WHERE t2.attribute_value = (SELECT attribute_value FROM Catalog_Contents_Additional_Attributes GROUP BY attribute_value ORDER BY count(*) DESC LIMIT 1) |
What is the entry name of the most expensive catalog (in USD)? | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT catalog_entry_name FROM catalog_contents ORDER BY price_in_dollars DESC LIMIT 1 |
Find the entry name of the catalog with the highest price (in USD). | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT catalog_entry_name FROM catalog_contents ORDER BY price_in_dollars DESC LIMIT 1 |
What is the level name of the cheapest catalog (in USD)? | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT t2.catalog_level_name FROM catalog_contents AS t1 JOIN catalog_structure AS t2 ON t1.catalog_level_number = t2.catalog_level_number ORDER BY t1.price_in_dollars LIMIT 1 |
Find the level name of the catalog with the lowest price (in USD). | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT t2.catalog_level_name FROM catalog_contents AS t1 JOIN catalog_structure AS t2 ON t1.catalog_level_number = t2.catalog_level_number ORDER BY t1.price_in_dollars LIMIT 1 |
What are the average and minimum price (in Euro) of all products? | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT avg(price_in_euros) , min(price_in_euros) FROM catalog_contents |
Give me the average and minimum price (in Euro) of the products. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT avg(price_in_euros) , min(price_in_euros) FROM catalog_contents |
What is the product with the highest height? Give me the catalog entry name. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT catalog_entry_name FROM catalog_contents ORDER BY height DESC LIMIT 1 |
Which catalog content has the highest height? Give me the catalog entry name. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT catalog_entry_name FROM catalog_contents ORDER BY height DESC LIMIT 1 |
Find the name of the product that has the smallest capacity. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT catalog_entry_name FROM catalog_contents ORDER BY capacity ASC LIMIT 1 |
Which catalog content has the smallest capacity? Return the catalog entry name. | Attribute_Definitions: attribute_id (INTEGER), attribute_name (VARCHAR(30)), attribute_data_type (VARCHAR(10))
Catalogs: catalog_id (INTEGER), catalog_name (VARCHAR(50)), catalog_publisher (VARCHAR(80)), date_of_publication (DATETIME), date_of_latest_revision (DATETIME)
Catalog_Structure: catalog_level_number (INTEGER), catalog_id (INTEGER), catalog_level_name (VARCHAR(50))
Catalog_Contents: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), parent_entry_id (INTEGER), previous_entry_id (INTEGER), next_entry_id (INTEGER), catalog_entry_name (VARCHAR(80)), product_stock_number (VARCHAR(50)), price_in_dollars (DOUBLE), price_in_euros (DOUBLE), price_in_pounds (DOUBLE), capacity (VARCHAR(20)), length (VARCHAR(20)), height (VARCHAR(20)), width (VARCHAR(20))
Catalog_Contents_Additional_Attributes: catalog_entry_id (INTEGER), catalog_level_number (INTEGER), attribute_id (INTEGER), attribute_value (VARCHAR(255)) | SELECT catalog_entry_name FROM catalog_contents ORDER BY capacity ASC LIMIT 1 |