remove double retweet_count

This commit is contained in:
Lukas Z 2022-07-28 17:30:57 +02:00
parent 607e0ffdc8
commit c1e539df74

View file

@ -4,11 +4,9 @@ SELECT
tweet.tweet_text, tweet.tweet_text,
tweet.like_count, tweet.like_count,
tweet.retweet_count, tweet.retweet_count,
tweet.retweet_count,
tweet.quote_count, tweet.quote_count,
(tweet.like_count + (tweet.like_count +
tweet.retweet_count + tweet.retweet_count +
tweet.retweet_count +
tweet.quote_count) AS interaction_count, tweet.quote_count) AS interaction_count,
(tweet.tweet_text LIKE "RT %") AS is_retweet, (tweet.tweet_text LIKE "RT %") AS is_retweet,
`user`.name, `user`.name,