Vkuehn Week 6
From LMU BioDB 2013
Individual Journal Week 6
- What movies were released before 1915?
- select*from movie where year <1915
- 1909;"D.W. Griffith: Years of Discovery 1909-1913"
- 1896;"Lumiere Brothers' First Films"
- 1914;"Tillie's Punctured Romance"
- 1914;"Cabiria"
- select*from movie where year <1915
- What movies from the 1980s had 4-digit numbers in their titles?
- select * from movie where year>1939 and year <1950 and title~'[0123456789][0123456789][0123456789][0123456789]'
- 1943;"Batman: The 1943 Serial Collection"
- 1940;"Broadway Melody of 1940"
- select * from movie where year>1939 and year <1950 and title~'[0123456789][0123456789][0123456789][0123456789]'
- What movies have apostrophes in their titles?
- How many movies have titles that begin with the word “Star”?
- How many movies, on a year by year basis, were released in the 1940s (years 1940 to 1949)? (don’t answer this question by listing the movies then counting the results!)
- Which movies, in alphabetical order, did member number 42 rate as a “5”?
- Produce a table that lists every movie that has been rated, the rating that the movie got, and the name of the member that gave this rating.
- How many movies has member number 42 rated as 1, 2, 3, 4, and 5, respectively?
- What is the average rating of movies that begin with the word “Star”?
- Form your own query involving movies, ratings, and members, then
- State your query in plain English (like the queries above).
- Provide the SQL query "translation" of your plain English query.
- Supply the answer to your query, according to the sample movie database.