From 959d0036c60c1e0d566a9a75ab3aae39861f533d Mon Sep 17 00:00:00 2001 From: lukaszett Date: Thu, 28 Jul 2022 17:32:13 +0200 Subject: [PATCH] add reply count --- query.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/query.sql b/query.sql index 128472a..49a17ba 100644 --- a/query.sql +++ b/query.sql @@ -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