-
-
Save izzymiller/80e9017aa6c5341df983ea05a2b9c978 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 | |
| strptime(message_date, '%Y-%m-%d %H:%M:%S') as message_date, | |
| chat, | |
| text, | |
| -- customized to my friends | |
| case | |
| when | |
| is_from_me = 1 | |
| then 'Izzy' | |
| when | |
| id = 'REDACTED' | |
| then 'Harvey' | |
| when | |
| id = 'REDACTED' | |
| then 'Kiebs' | |
| when id = 'REDACTED' then 'Henry' | |
| when id = 'REDACTED' then 'Luke' | |
| when id = 'REDACTED' then 'Wyatt' | |
| when id = 'REDACTED' then 'Luke' | |
| when id = 'REDACTED' then 'Harvey' | |
| end as sender | |
| from chats | |
| order by message_date asc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment