# 查看谁在关注话题

**URL:** https://meta.discourse.org/t/see-who-is-watching-a-topic/254928
**Category:** Data & reporting
**Tags:** sql-query
**Created:** [2023年二月12日 23:28 UTC](https://meta.discourse.org/t/see-who-is-watching-a-topic/254928 "2023-02-12T23:28:43Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Canapin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/canapin/32/119591_2.png) [@Canapin](https://meta.discourse.org/u/Canapin)
#### Post date: [2023年二月13日 12:42 UTC](https://meta.discourse.org/t/see-who-is-watching-a-topic/254928/3 "2023-02-13T12:42:53Z")

</div>

你好 Aidan 🙂

是的，我认为此功能尚未被考虑过，它的实用性似乎不高。  
不过，你可以通过一个数据探索器查询来实现它，例如：

```sql
-- [params]
-- topic_id :topic_id

SELECT user_id, topic_id, notification_level
FROM topic_users
WHERE topic_id = :topic_id
ORDER BY id DESC

```

 ![image](https://global.discourse-cdn.com/meta/original/4X/3/8/d/38d8d08ef6b500b197b0d5a53cd55147e3236615.png)

---

_[View the full topic](https://meta.discourse.org/t/see-who-is-watching-a-topic/254928)._
