add reply count
This commit is contained in:
parent
c1e539df74
commit
959d0036c6
1 changed files with 3 additions and 1 deletions
|
@ -5,9 +5,11 @@ SELECT
|
|||
tweet.like_count,
|
||||
tweet.retweet_count,
|
||||
tweet.quote_count,
|
||||
tweet.reply_count,
|
||||
(tweet.like_count +
|
||||
tweet.retweet_count +
|
||||
tweet.quote_count) AS interaction_count,
|
||||
tweet.quote_count +
|
||||
tweet.reply_count) AS interaction_count,
|
||||
(tweet.tweet_text LIKE "RT %") AS is_retweet,
|
||||
`user`.name,
|
||||
`user`.handle
|
||||
|
|
Loading…
Reference in a new issue