반응형
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
*더 나은 내용을 위한 지적, 조언은 언제나 환영합니다.
'SQL' 카테고리의 다른 글
(SQL) - LeetCode (easy) 1729. Find Followers Count (0) | 2024.06.23 |
---|---|
(SQL) - LeetCode (easy) 1693. Daily Leads and Partners (0) | 2024.06.13 |
(SQL) - LeetCode (easy) 1667. Fix Names in a Table (0) | 2024.05.30 |
(SQL) - LeetCode (easy) 1656. Design an Ordered Stream (0) | 2024.05.27 |
(SQL) - LeetCode (easy) 1587. Bank Account Summary II (0) | 2024.05.02 |