Closed epaisano closed 8 months ago
Consider just the best sellers in the "travelers" category:
Travel | WIFE TURN | 31
Travel | DOGMA FAMILY | 30
Travel | MARRIED GO | 30
- Travel | TALENTED HOMICIDE | 29
+ Travel | DEER VIRGINIAN | 29
Travel | TITANS JERK | 29
Notice that there are more than 5 rows with "total rentals" >= 29
. So somehow we need to "break the tie" and select only 5 rows. There are many reasonable ways to break the tie, but to solve this problem you to figure out how I broke the tie and implement that. (I used a ORDER BY clause, but you'd need to figure out the particular columns/directions that it's ordered on.) It's particularly tricky because I used a different ORDER BY clause for breaking the tie than I did for ordering the final results.
I see, thank you!
Hello!
I keep reviewing my code for problem 14 to figure out why I get three different names from the expected output, and I can't figure out where my problem is. The following is my current code:
and the following is what I get when I run the diff command:
DId anyone else get thie same problem by chance? Thank you!!