SQL
First
SELECT Tweets FROM
content > 15;
Second with AI.
SELECT tweet_id, content
FROM Tweets
WHERE LENGTH(content) > 15;
Show only tweet_id
SELECT tweet_id
FROM Tweets
WHERE LENGTH(content) > 15;
SQL
First
SELECT Tweets FROM
content > 15;
Second with AI.
SELECT tweet_id, content
FROM Tweets
WHERE LENGTH(content) > 15;
Show only tweet_id
SELECT tweet_id
FROM Tweets
WHERE LENGTH(content) > 15;
For further actions, you may consider blocking this person and/or reporting abuse
Emanoel Carvalho -
Emanoel Carvalho -
Girish Bhatia -
Beck_Moulton -
Top comments (0)