filter by character length

PHOTO EMBED

Fri Sep 29 2023 16:51:10 GMT+0000 (Coordinated Universal Time)

Saved by @jaez #mysql

+----------------+---------+
| Column Name    | Type    |
+----------------+---------+
| tweet_id       | int     |
| content        | varchar |
+----------------+---------+
tweet_id is the primary key (column with unique values) for this table.
This table contains all the tweets in a social media app.


SELECT tweet_id
FROM Tweets
WHERE CHAR_LENGTH(content) > 15;
content_copyCOPY

https://leetcode.com/problems/big-countries/?envType