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

Ottieni tutti i punti (cerchi con raggio) che si sovrappongono a un determinato punto

Sì, questo è esattamente il tipo di cosa che geography e i metodi spaziali sono bravi a. Ecco un breve esempio:

DECLARE @Restaurant TABLE (
    Name nvarchar(50),
    Location geography,
    DeliveryRadiusMetres int
);

INSERT @Restaurant
VALUES
-- long lat
('Dominos','POINT(-0.109339 51.532835)',2000 ),
('Pizza Hut','POINT(-0.102961 51.541157)',2000 );

Nota che qui per costruire la geography valori Sto usando una conversione implicita da stringa, che dietro le quinte chiama geography::Parse .

DECLARE @MyLocation geography = 'POINT(-0.115063 51.550231)';

SELECT
    Name
FROM
    @Restaurant R
WHERE
    R.Location.STDistance(@MyLocation) <= R.DeliveryRadiusMetres
;