Changes between Version 2 and Version 3 of UserViewsPublicReadingLists
- Timestamp:
- 08/24/26 16:14:24 (13 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UserViewsPublicReadingLists
v2 v3 2 2 3 3 === Actor: **Regular User / Guest User** 4 4 5 A user browses all public reading lists on the platform to discover new stories recommended by other readers. 5 6 … … 8 9 **2.** The system retrieves all public reading lists along with their story counts. 9 10 {{{#!sql 10 SELECT rl.list_id, rl. name, rl.content, u.username,11 COUNT(rli.story_id) AS total_stories, rl. created_at11 SELECT rl.list_id, rl.list_name, rl.list_content, u.username, 12 COUNT(rli.story_id) AS total_stories, rl.list_created_at 12 13 FROM READING_LIST rl 13 14 JOIN USERS u ON rl.user_id = u.user_id
