SQL
leetcode 620. Not Boring Movies
무적김두칠
2022. 3. 17. 16:04
1
2
3
4
5
6
7
|
/* Write your PL/SQL query statement below */
select *
from cinema
where 1=1
and mod(id,2)=1
and description!='boring'
order by rating desc
|
cs |
반응형