remove double retweet_count
This commit is contained in:
parent
607e0ffdc8
commit
c1e539df74
1 changed files with 1 additions and 3 deletions
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue