[코드카타] SQL 20 Invalid Tweets

Data_Student·2024년 11월 6일
0

코드카타

목록 보기
27/57

[코드카타] SQL 20 Invalid Tweets

20. Invalid Tweets
https://leetcode.com/problems/invalid-tweets/

The tweet is invalid if the number of characters used in 
the content of the tweet is strictly greater than 15.
Return the result table in any order.
select tweet_id
from tweets
where length(content) > 15
#문자의 수

0개의 댓글