Leetcode 614 二級關注者

2021-10-03 16:07:34 字數 536 閱讀 9370

題目難度

中等題目描述

followee

followerab

bcbd

de輸出follower

numb2d

1b 和 d 都在在 follower 字段**現,作為被關注者,b 被 c 和 d 關注,d 被 e 關注。a 不在 follower 欄位內,所以a不在輸出列表中。

正確答案

select followee as follower,

count

(distinct follower)

as num

from follow f1

where

exists

(select

1from follow f2 where f1.followee=f2.follower)

group

by followee

distinct 細節容易忘,數的關注者的時候記得去重,每個人被乙個賬號關注,只能算作乙個人。(可能有關注後取關又關注的情況,都記錄在了表中)

LeetCode 614 二級關注者(中等)

在 facebook 中,表 follow 會有 2 個字段 followee,follower 分別表示被關注者和關注者。比方說 followee follower a b b c b d d e 應該輸出 follower num b 2 d 1 解釋 b 和 d 都在在 follower 字段...

leetcode614 二級關注者(SQL)

在 facebook 中,表 follow 會有 2 個字段 followee,follower 分別表示被關注者和關注者。比方說 followee follower a b b c b d d e 應該輸出 follower num b 2 d 1 解釋 b 和 d 都在在 follower 字段...

mysql二級考試技巧 mysql二級考試怎麼考

mysql計算機二級考試是上機考試,考試內容是mysql的基礎知識。下面一起來詳細了解一下吧。題型及分值 單項選擇題 40分 含公共基礎知識部分10分 操作題 60分 包括基本操作題 簡單應用題及綜合應用題 考試環境 開發環境 wamp 5.0及以上 資料庫管理系統 mysql 5.5 程式語言 p...