DEV Community

Debesh P.
Debesh P.

Posted on

1683. Invalid Tweets | LeetCode | SQL 50 | Interview Questions | MySQL

Problem Link

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


leetcode 1683


Solution

# Write your MySQL query statement below
select 
    tweet_id
from
    Tweets
where 
    length(content) > 15;
Enter fullscreen mode Exit fullscreen mode

Top comments (0)