add reply count

This commit is contained in:
Lukas Z 2022-07-28 17:32:13 +02:00
parent c1e539df74
commit 959d0036c6
1 changed files with 3 additions and 1 deletions

View File

@ -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