Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

Come posso estendere questa query SQL per trovare i k vicini più vicini?

Cosa succede se rimuovi TOP (1) WITH TIES dalla query interna e imposta la query esterna in modo che restituisca la k superiore righe?

Sarei anche interessato a sapere se questo emendamento aiuta affatto. Dovrebbe essere più efficiente rispetto all'utilizzo di TOP :

DECLARE @start FLOAT = 1000
        ,@k INT = 20
        ,@p FLOAT = 2;

WITH NearestPoints AS
(
     SELECT *
            ,T.g.STDistance(@x) AS dist
            ,ROW_NUMBER() OVER (ORDER BY T.g.STDistance(@x)) AS rn
     FROM Numbers 
     JOIN T WITH(INDEX(spatial_index)) 
     ON   T.g.STDistance(@x) <  @start*POWER(@p,Numbers.n)
     AND (Numbers.n - 1 = 0 
          OR T.g.STDistance(@x) >= @start*POWER(@p,Numbers.n - 1)
         )
)
SELECT * 
FROM NearestPoints
WHERE rn <= @k;

NB - non testato - Non ho accesso a SQL 2008 qui.