https://leetcode.com/problems/invalid-tweets/description/?envType=study-plan-v2&envId=top-sql-50
Invalid Tweets - LeetCode
Can you solve this real interview question? Invalid Tweets - Table: Tweets +----------------+---------+ | Column Name | Type | +----------------+---------+ | tweet_id | int | | content | varchar | +----------------+---------+ tweet_id is the primary key (c
leetcode.com
전체 코드
SELECT tweet_id
FROM Tweets
WHERE length(content) > 15
'Coding Test > SQL' 카테고리의 다른 글
[프로그래머스/SQL 고득점 Kit] SUM,MIN,MAX ALL SOLVE (0) | 2024.01.11 |
---|---|
[프로그래머스/SQL 고득점 Kit] SELECT ALL SOLVE (1) | 2024.01.10 |
[LeetCode] 1148. Article Views I (easy, SQL) (1) | 2024.01.09 |
[LeetCode] 595. Big Countries (easy, SQL) (0) | 2024.01.09 |
[LeetCode] 584. Find Customer Referee (easy, SQL) (0) | 2024.01.09 |