An open API service indexing awesome lists of open source software.

https://github.com/dowscope/upload-api


https://github.com/dowscope/upload-api

Last synced: 7 months ago
JSON representation

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;