I have a text column which contains hashtags used by users. each row contains a different number of hashtags, separed by a space, like this:
USERS | HASHTAG COLUMN:
------------------------
user1 | hashtag1 hashtag2
user2 | hashtag2
user1 | hashtag1 hashtag2 hashtag3 hashtag4
I want to get the most used hashtags, in this case my desired output should be:
OCCURRENCES | TAG
----------------------
3 | hashtag2
2 | hashtag1
1 | hashtag3
1 | hashtag4
I have NO IDEA how to get it, any help is much appreciated. Thank you