Created
November 26, 2019 13:47
-
-
Save showyou/9fd052b981b87e5b28ace1b6a4bab1b5 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 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