본문 바로가기

SQL

(SQL) - LeetCode (easy) 1683. Invalid Tweets

반응형

https://leetcode.com/problems/invalid-tweets/description/

문자열의 길이를 세는 간단한 문제였습니다.

📕 풀이방법

📔 풀이과정

content의 length 가 15 초과하는 id들을 select해줍니다.


📕 Code

📔 ANSI SQL

select tweet_id as tweet_id from tweets
where length(content) > 15

*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.