100 ミリ秒以内に行われたリクエストを表示する postgresql のクエリを作成する必要があります。postgresql テーブル リクエストには、リクエスト ID (request_id) とタイムスタンプ (create_stamp) があります。
以下の Mu クエリは機能しますが、非常に低速です。
select
b1.create_stamp as st1,
b2.create_stamp as st2,
b1.request_id as b1_id,
b2.request_id as b2_id,
Cast(date_part('milliseconds', b1.create_stamp) as Integer) as msi1,
Cast(date_part('milliseconds', b2.create_stamp) as Integer) as msi2,
(date_part('milliseconds', b1.create_stamp) - date_part('milliseconds', b2.create_stamp)) as diff
from
request b1, request b2
where
(b1.request_id - b2.request_id) = 1
and (date_part('milliseconds', b1.create_stamp) - date_part('milliseconds', b2.create_stamp)) < 100
and (date_part('milliseconds', b1.create_stamp) - date_part('milliseconds', b2.create_stamp)) > 0
order by b1.request_id;