Last active
January 27, 2021 13:35
-
-
Save xoelop/d50011af8348c89a7d68e9361ffdf59e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
date, | |
link, | |
tweet_text, | |
ifNull(url, '') url, | |
ifNull(title, '') title, | |
ifNull(description, '') description, | |
media, | |
format('https://twitter.com/{}', screenname) user_link, | |
format('{} (@{})', username, screenname) user_name_handle, | |
user_logo, | |
bio, | |
ifNull(location, '') location, | |
likes, | |
rts, | |
num_followers | |
FROM filter_likes | |
ORDER BY date desc | |
LIMIT 1 BY link |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment