Skip to content

Instantly share code, notes, and snippets.

@showyou
Created November 26, 2019 13:47
Show Gist options
  • Save showyou/9fd052b981b87e5b28ace1b6a4bab1b5 to your computer and use it in GitHub Desktop.
Save showyou/9fd052b981b87e5b28ace1b6a4bab1b5 to your computer and use it in GitHub Desktop.
お前は今までに観た映画の数を覚えているか?
select text, count(text) as cnt from tweet
where
user='miyabiarts'
and
(text like '%はじまります%' or text like '%はじまっています%' )
and
datetime >= '2019-01-01'
and
not (text like 'ラブライブ!%' and datetime >= '2019-07-30')
and
text not like 'RT%'
and
text not like 'ランティス祭り%'
group by
text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment