Slack admins want to identify high-energy channels. One metric they use is the frequency of the :fire: emoji within a channel's history.
Write an SQL query to count how many times the emoji :fire: was used in channel_id 101.
| channel_id(INTEGER) | emoji_used(VARCHAR) |
|---|---|
| 101 | :fire: |
| 101 | :smile: |
| 102 | :fire: |
| 101 | :fire: |
| 101 | :check: |
| 101 | :fire: |
| 103 | :fire: |
| channel_id(INTEGER) | fire_emoji_count(INTEGER) |
|---|---|
| 101 | 3 |