Tôi không nghĩ rằng nó có thể được thực hiện trong SQL thuần túy.
Việc dịch điều này sang PL / pgSQL khá đơn giản.
CREATE OR REPLACE FUNCTION public.usp_get_data(i_distance_choice integer, i_longitude double precision, i_latitude double precision)
RETURNS TABLE(convo_id bigint)
LANGUAGE plpgsql
STABLE
AS $function$
BEGIN
IF i_distance_choice < 75 then
return query SELECT po.convo_id
FROM post po
WHERE ST_DWithin(po.geog, ST_SetSRID(ST_MakePoint(i_longitude, i_latitude), 4326), i_distance_choice * 1609.34)
ORDER BY po.reply_count DESC, convo_id DESC
LIMIT 10;
ELSE
return query SELECT po.convo_id
FROM post po
WHERE po.geog<->ST_SetSRID(ST_MakePoint(i_longitude, i_latitude), 4326) < i_distance_choice * 1609.34
ORDER BY po.reply_count DESC, convo_id DESC
LIMIT 10;
END IF;
END
$function$
Tôi đã xác minh rằng nó sử dụng chỉ mục địa lý <75 và btree (reply_count, convo_id)
chỉ số ở mức 75 trở lên.