Raw Functionは100に制限されています

投稿のすべてのコメントを生の関数で取得したい

生のリンクを使用しています
https://theantsforum.allstarunion.com/raw/2018

生のリンクの最後のコメントは「Irbef | 2022-07-16 11:45:50 UTC | #101」ですが、それは正しくありません。最後は7月16日ではなく7月21日になるはずです。助けてください。

こんにちは、
生のルートはページネーションされているようです。
https://theantsforum.allstarunion.com/raw/2018?page=2
https://theantsforum.allstarunion.com/raw/2018?page=3
https://theantsforum.allstarunion.com/raw/2018?page=4

「いいね!」 3

多数のページがある場合は、データエクスプローラーも使用できます。このようなものが機能すると思います。

-- [params]
-- int :topic_id

SELECT p.topic_id,
       p.post_number,
       p.raw,
       p.cooked
FROM posts p
WHERE p.topic_id = :topic_id
ORDER BY p.post_number ASC

(ただし、これは管理者、または管理者がクエリへのアクセスを許可したグループにのみ役立つため、この場合は適用されない可能性があります)

「いいね!」 3

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.