"content":"<p>Table: <code>Tweets</code></p>\n\n<pre>\n+----------------+---------+\n| Column Name | Type |\n+----------------+---------+\n| tweet_id | int |\n| content | varchar |\n+----------------+---------+\ntweet_id is the primary key (column with unique values) for this table.\nThis table contains all the tweets in a social media app.\n</pre>\n\n<p> </p>\n\n<p>Write a solution to find the IDs of the invalid tweets. The tweet is invalid if the number of characters used in the content of the tweet is <strong>strictly greater</strong> than <code>15</code>.</p>\n\n<p>Return the result table in <strong>any order</strong>.</p>\n\n<p>The result format is in the following example.</p>\n\n<p> </p>\n<p><strong class=\"example\">Example 1:</strong></p>\n\n<pre>\n<strong>Input:</strong> \nTweets table:\n+----------+----------------------------------+\n| tweet_id | content |\n+----------+----------------------------------+\n| 1 | Vote for Biden |\n| 2 | Let us make America great again! |\n+----------+----------------------------------+\n<strong>Output:</strong> \n+----------+\n| tweet_id |\n+----------+\n| 2 |\n+----------+\n<strong>Explanation:</strong> \nTweet 1 has length = 14. It is a valid tweet.\nTweet 2 has length = 32. It is an invalid tweet.\n</pre>\n",
"exampleTestcases":"{\"headers\":{\"Tweets\":[\"tweet_id\",\"content\"]},\"rows\":{\"Tweets\":[[1,\"Vote for Biden\"],[2,\"Let us make America great again!\"]]}}",
"categoryTitle":"Database",
"contributors":[],
"topicTags":[
{
"name":"Database",
"slug":"database",
"translatedName":null,
"__typename":"TopicTagNode"
}
],
"companyTagStats":null,
"codeSnippets":[
{
"lang":"MySQL",
"langSlug":"mysql",
"code":"# Write your MySQL query statement below\n",
"__typename":"CodeSnippetNode"
},
{
"lang":"MS SQL Server",
"langSlug":"mssql",
"code":"/* Write your T-SQL query statement below */\n",
"__typename":"CodeSnippetNode"
},
{
"lang":"Oracle",
"langSlug":"oraclesql",
"code":"/* Write your PL/SQL query statement below */\n",
"__typename":"CodeSnippetNode"
},
{
"lang":"Pandas",
"langSlug":"pythondata",
"code":"import pandas as pd\n\ndef invalid_tweets(tweets: pd.DataFrame) -> pd.DataFrame:\n ",
"__typename":"CodeSnippetNode"
},
{
"lang":"PostgreSQL",
"langSlug":"postgresql",
"code":"-- Write your PostgreSQL query statement below\n",
"sampleTestCase":"{\"headers\":{\"Tweets\":[\"tweet_id\",\"content\"]},\"rows\":{\"Tweets\":[[1,\"Vote for Biden\"],[2,\"Let us make America great again!\"]]}}",