# قائمة كل حدث "تم حله" بشكل فردي

**URL:** https://meta.discourse.org/t/list-each-individual-solved-event/275390
**Category:** Data & reporting
**Tags:** solved, sql-query
**Created:** [16 أبريل 2023، 3:10م UTC](https://meta.discourse.org/t/list-each-individual-solved-event/275390 "2023-04-16T15:10:00Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![JammyDodger](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/jammydodger/32/254611_2.png) [@JammyDodger](https://meta.discourse.org/u/JammyDodger)
#### Post date: [16 أبريل 2023، 3:10م UTC](https://meta.discourse.org/t/list-each-individual-solved-event/275390/1 "2023-04-16T15:10:00Z")

</div>

لسرد كل حدث “تم حله” بشكل فردي، يمكنك استخدام استعلام مثل هذا:

```sql
SELECT 
   acting_user_id, 
   target_topic_id AS topic_id, 
   target_post_id, 
   created_at::date
FROM user_actions
WHERE action_type=15
ORDER BY created_at DESC

```
