Skip to content

Instantly share code, notes, and snippets.

@izzymiller
Created April 12, 2023 15:47
Show Gist options
  • Select an option

  • Save izzymiller/80e9017aa6c5341df983ea05a2b9c978 to your computer and use it in GitHub Desktop.

Select an option

Save izzymiller/80e9017aa6c5341df983ea05a2b9c978 to your computer and use it in GitHub Desktop.
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