[LeetCode/MySQL50] 1683. Invalid Tweets

2025. 1. 13. 01:04개인활동/코테

반응형

Problem

Solution

# Write your MySQL query statement below
Select tweet_id from Tweets 
where length(content) > 15;
반응형