620. Department Top Three Salaries
Use SQL wildcard with like . % is any length. _ is one character.
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:
1 | +---------+-----------+--------------+-----------+ |
Soulution:
1 | # Write your MySQL query statement below |