# Tags: como o admin pode ver quem está seguindo quais tags?

**URL:** https://meta.discourse.org/t/tags-how-can-admin-see-who-is-following-what-tags/83445
**Category:** Data & reporting
**Tags:** sql-query
**Created:** [Março 21, 2018, 12:13am UTC](https://meta.discourse.org/t/tags-how-can-admin-see-who-is-following-what-tags/83445 "2018-03-21T00:13:12Z")
**Posts on this page:** 1
**Showing post:** 2

<div class="post-metadata">

### Author: ![ChrisBeach](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/chrisbeach/32/214628_2.png) [@ChrisBeach](https://meta.discourse.org/u/ChrisBeach)
#### Post date: [Março 21, 2018, 12:16am UTC](https://meta.discourse.org/t/tags-how-can-admin-see-who-is-following-what-tags/83445/2 "2018-03-21T00:16:02Z")

</div>

A [data explorer](https://meta.discourse.org/t/data-explorer-plugin/32566) query will do it:

```
SELECT 
    name, 
    user_id, 
    notification_level 
FROM tag_users tu 
    JOIN tags t ON tu.tag_id = t.id

```

---

_[View the full topic](https://meta.discourse.org/t/tags-how-can-admin-see-who-is-following-what-tags/83445)._
