https://github.com/dowscope/upload-api
https://github.com/dowscope/upload-api
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dowscope/upload-api
- Owner: Dowscope
- Created: 2021-12-23T22:17:31.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2025-02-26T21:17:05.000Z (11 months ago)
- Last Synced: 2025-02-26T22:24:07.663Z (11 months ago)
- Language: JavaScript
- Size: 1.32 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# upload-api
SELECT
ft.title,
CONCAT(u.first_name, ' ',u.last_name) AS "user",
fp.date_posted
FROM forum_category fc
JOIN forum_topics ft ON ft.cat_id = fc.cat_id
JOIN forum_posts fp ON fp.topic_id = ft.topic_id
JOIN USERS u ON u.userid = fp.user_id;