難度:Easy
Tweets表格屬性 |
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.
原文:
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 strictly greater than 15.
Return the result table in any order.
The result format is in the following example.
個人翻譯(非逐字翻譯):
編寫出一個解決方案,尋找無效推文的ID,推文內容必須大於15字,否則都屬於無效的推文,
輸出結果按照任意順序進行排列。
輸入:
tweet_id |
content |
1 |
Let us Code |
2 |
More than fifteen chars are here! |
輸出:
註釋:
Tweet 1 has length = 11. It is a valid tweet.
Tweet 2 has length = 33. It is an invalid tweet.
個人理解 |
該習題是典型的查找數值題目,用到了length()函數來取得字串長度。
length():一個漢字算個字串長度,一個數字、字母則算一個字串長度 char_length():則是不論漢字、數字及字母,都算是一個字串長度
本題主要運用該內置函數,將content欄位中滿15字串長度的表格給提取出來。 |
程式碼 |
select tweet_id from Tweets where length(content) > 15; |