# Rapporto sui clic all'interno dei post

**URL:** https://meta.discourse.org/t/reporting-on-clicks-within-posts/348653
**Category:** Feature
**Created:** [23 Gennaio 2025, 5:44pm UTC](https://meta.discourse.org/t/reporting-on-clicks-within-posts/348653 "2025-01-23T17:44:59Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![ked](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/ked/32/64837_2.png) [@ked](https://meta.discourse.org/u/ked)
#### Post date: [23 Gennaio 2025, 5:44pm UTC](https://meta.discourse.org/t/reporting-on-clicks-within-posts/348653/1 "2025-01-23T17:44:59Z")

</div>

Mi piacerebbe molto vedere un report nativo sui clic all’interno dei Post.

 ![CleanShot 2025-01-23 at 12.38.43@2x](https://global.discourse-cdn.com/meta/original/4X/3/f/0/3f069be14ffd80a329c8abeb2d5f976b668e3e68.png)

---

<div class="post-metadata">

### Author: ![pfaffman](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/pfaffman/32/120154_2.png) [@pfaffman](https://meta.discourse.org/u/pfaffman)
#### Post date: [23 Gennaio 2025, 6:15pm UTC](https://meta.discourse.org/t/reporting-on-clicks-within-posts/348653/2 "2025-01-23T18:15:22Z")

</div>

Dato che raramente noto che le cose in questa categoria sono richieste di funzionalità e le tratto quasi sempre come supporto, ho appena creato una query per l’esplorazione dei dati per te sul tuo sito. Ecco l’SQL:

```sql
select clicks, topic_id, post_id, url
from topic_links
order by clicks desc

```

Ma ora penso che questo sia più simile a ciò che desideri: ti fornisce link aggiunti di recente con più di 5 clic.

```sql
select clicks, topic_id, post_id, url
from topic_links
where clicks > 5
order by created_at

```
