X City opened a new cinema, please people wowould like to go to this cinema. The cinema also gives out a poster indicating the movies 'ratings and descriptions.
Please write a SQL query to output movies with an odd numbered ID and a description that is not 'boring'. Order the result by rating.
For example, table cinema:
+ --------- + ----------- + -------------- + ----------- +
| ID | movie | description | rating |
+ --------- + ----------- + -------------- + ----------- +
| 1 | war | great 3D | 8.9 |
| 2 | science | fiction | 8.5 |
| 3 | Irish | boring | 6.2 |
| 4 | ice song | fantacy | 8.6 |
| 5 | house card | interesting | 9.1 |
+ --------- + ----------- + -------------- + ----------- +
For the example above, the output shocould be:
+ --------- + ----------- + -------------- + ----------- +
| ID | movie | description | rating |
+ --------- + ----------- + -------------- + ----------- +
| 5 | house card | interesting | 9.1 |
| 1 | war | great 3D | 8.9 |
+ --------- + ----------- + -------------- + ----------- +
# Write your MySQL query statement belowselect * From cinemawhere Mod (ID, 2) = 1 and description! = 'Boring' order by rating DESC
620. Not boring movies