需要数据探索器查询来导出整个主题

我需要一个有效的数据浏览器查询来导出整个主题,有人能帮忙吗?非常感谢。

你好 @Mr.X_Mr.X :wave:

这应该可以工作,只需指定 topic_id 参数:

-- [params]
-- int :topic_id = 

select 
  p.id as post_id, 
  p.user_id, 
  p.created_at, 
  p.updated_at, 
  p.like_count, 
  p.raw as post_content 
from 
  posts p 
where 
  p.topic_id = :topic_id
4 个赞

根据他们对数据的需求,他们可能需要 p.cooked

3 个赞