Let me start with SQL isn’t a strength or skill of mine, I know just enough to be dangerous - and by that I mean I can likely break a query faster than I can create one.
Here is the query that I have:
-- [params]
-- topic_id :topic_id
SELECT
user_id,
post_number,
raw,
created_at,
like_count
FROM posts
WHERE topic_id = :topic_id
ORDER BY post_number
The problem that I am running into is that when I run the query in the Community, it shows me a clickable User for user_id
but when I export it, it’s just the ID, which isn’t as helpful if I am sending it to another person to follow up with folks. I think I need to use a join to do some magic, possibly. Anyone can help here?