Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Data Structure
- 구현
- 자바
- Class
- java
- Number Theory
- Tree
- string
- 파이썬
- dynamic programming
- sorting
- hash table
- SQL
- Counting
- array
- database
- 코테
- greedy
- Math
- Stack
- bit manipulation
- Binary Tree
- simulation
- implement
- two pointers
- geometry
- Matrix
- Binary Search
- 코딩테스트
- Method
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 620. Not Boring Movies 본문
1. Input
1) Table: Cinema
2. Output
1) id가 홀수이고 description이 'boring'이 아닌 것을 rating의 내림차순으로 정렬된 결과를 반환
- 모든 칼럼을 출력한다.
3. Example
4. Code
1) 첫 코드(2023/03/17)
select * from Cinema where (id%2!=0 and description!='boring') order by rating desc
'코딩테스트 풀이 > SQL' 카테고리의 다른 글
[LeetCode/Easy] 1527. Patients With a Condition (0) | 2023.03.19 |
---|---|
[LeetCode/Easy] 1407. Top Travellers (0) | 2023.03.19 |
[LeetCode/Easy] 607. Sales Person (0) | 2023.03.16 |
[LeetCode/Easy] 596. Classes More Than 5 Students (0) | 2023.03.16 |
[LeetCode/Easy] 595. Big Countries (0) | 2023.03.16 |