#79. [LeetCode / MySQL] 1683. Invalid Tweets

문제

 

입력 코드

SELECT tweet_id
FROM Tweets
WHERE LENGTH(content) > 15

 

 

코드 설명

#SELECT #WHERE #LENGTH

 

문제 출처

 

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