小屋創作

日誌2024-10-30 13:03

【Leetcode】1683. Invalid Tweets

作者:Chris

Leetcode題目網址:1683. Invalid Tweets
難度: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_id
2




註釋:
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;

1

0

LINE 分享

相關創作

【SQL】一些常用的SQL語法

【Leetcode】184. Department Highest Salary

【Leetcode】175. Combine Two Tables

留言

開啟 APP

face基於日前微軟官方表示 Internet Explorer 不再支援新的網路標準,可能無法使用新的應用程式來呈現網站內容,在瀏覽器支援度及網站安全性的雙重考量下,為了讓巴友們有更好的使用體驗,巴哈姆特即將於 2019年9月2日 停止支援 Internet Explorer 瀏覽器的頁面呈現和功能。
屆時建議您使用下述瀏覽器來瀏覽巴哈姆特:
。Google Chrome(推薦)
。Mozilla Firefox
。Microsoft Edge(Windows10以上的作業系統版本才可使用)

face我們了解您不想看到廣告的心情⋯ 若您願意支持巴哈姆特永續經營,請將 gamer.com.tw 加入廣告阻擋工具的白名單中,謝謝 !【教學】