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.like_count,
 | 
				
			||||||
  tweet.retweet_count,
 | 
					  tweet.retweet_count,
 | 
				
			||||||
  tweet.quote_count,
 | 
					  tweet.quote_count,
 | 
				
			||||||
 | 
					  tweet.reply_count,
 | 
				
			||||||
  (tweet.like_count +
 | 
					  (tweet.like_count +
 | 
				
			||||||
  tweet.retweet_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,
 | 
					  (tweet.tweet_text LIKE "RT %") AS is_retweet,
 | 
				
			||||||
  `user`.name, 
 | 
					  `user`.name, 
 | 
				
			||||||
  `user`.handle  
 | 
					  `user`.handle  
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue