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
- 코딩테스트
- string
- java
- 파이썬
- bit manipulation
- array
- Binary Search
- 자바
- Binary Tree
- implement
- dynamic programming
- Data Structure
- 코테
- Stack
- geometry
- Counting
- two pointers
- 구현
- database
- hash table
- Method
- SQL
- Math
- Number Theory
- sorting
- Class
- simulation
- Matrix
- Tree
- greedy
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 1683. Invalid Tweets 본문
1. Input
1) Table: Tweets (pk: tweet_id)
2. Output
1) content의 길이가 15보다 큰 것의 tweet_id를 출력
- 출력 순서는 상관 없다.
3. Example
4. Code
1) 첫 코드(2023/04/15)
select tweet_id
from(
select tweet_id, length(content) as len
from Tweets
) a
where len>15;
2) where절을 서브 쿼리로 넣어본 코드(2023/04/15)
select tweet_id
from(
select tweet_id, length(content)
from Tweets
where length(content)>15
) a;
3) where절로 서브 쿼리를 옮겨본 코드(2023/04/15)
select tweet_id
from Tweets
where tweet_id in (
select tweet_id
from Tweets
where length(content)>15
);
- 속도는 1<2<3 순서였다.
'코딩테스트 풀이 > SQL' 카테고리의 다른 글
[LeetCode/Easy] 1741. Find Total Time Spent by Each Employee (0) | 2023.04.17 |
---|---|
[LeetCode/Easy] 1693. Daily Leads and Partners (0) | 2023.04.15 |
[LeetCode/Easy] 1378. Replace Employee ID With The Unique Identifier (0) | 2023.04.11 |
[LeetCode/Easy] 1148. Article Views I (0) | 2023.04.06 |
[LeetCode/Easy] 1068. Product Sales Analysis I (0) | 2023.04.04 |