Re: Re: Re: Untitled

From Sharp Terrapin, 2 Months ago, written in Plain Text, viewed 120 times. This paste is a reply to Re: Re: Untitled from Eratic Lechwe - view diff
URL http://codebin.org/view/c3e1ee42 Embed
Download Paste or View Raw
  1. SELECT c.name AS category_name,
  2.        AVG(length) AS average_length
  3. FROM movie AS m
  4. INNER JOIN film_category AS fc ON m.film_id = fc.film_id
  5. INNER JOIN category AS c ON fc.category_id = c.category_id
  6. WHERE rating IN
  7. (SELECT rating
  8. FROM movie AS m
  9. GROUP BY rating
  10. ORDER BY AVG(rental_rate) DESC
  11. LIMIT 10)
  12. GROUP BY c.name;

Replies to Re: Re: Re: Untitled rss

Title Name Language When
Re: Re: Re: Re: Untitled Torrid Panda text 2 Months ago.

Reply to "Re: Re: Re: Untitled"

Here you can reply to the paste above