私はmysqlを使用してこの質問に対するたくさんの答えを見つけましたが、2008年のsqlが使用できるクエリに何も変換できませんでした。データベースの各行に経度と緯度の列があります。ユーザーがいる場所の緯度と経度を取得します。ユーザーの緯度/経度からxマイル以内にあるすべての行を検索できるようにしたいと思います。また、SOで見つけた他のクエリを使用しようとすると、エラーが発生し続けます-'pow' is not a recognized built-in function name.
これは奇妙です。なぜなら、SQL 2008で以前にpow
を使用したことがあると確信しているからです。これまでのところ、これは考えられる最も近いものです。
select * from tbl_MyTable
WHERE (
POW( ( 69.1 * ( Longitude - @longitude ) * cos( @latitude / 57.3 ) ) , 2 ) + POW( ( 69.1 * ( Latitude - @latitude ) ) , 2 )
) < ( 5 *5 );
SQL 2008を使用しているので、ネイティブの地理空間機能の使用を検討してください。あなたは次のような豪華なことをすることができます:
yourPoint.STDistance(@otherPoint) <= @distance
などが効率的になりますそのようです:
alter table [yourTable] add [p] as geography::Point(Latitude, Longitude, 4326) persisted;
create spatial index [yourSpatialIndex] on [yourTable] ([p])
declare @Latitude float = <somevalue>, @Longitude float = <somevalue>;
declare @point geography = geography::Point(@Latitude, @Longitude, 4326);
declare @distance int = <distance in meters>;
select * from [yourTable] where @point.STDistance([p]) <= @distance;
捕虜ではなく力が欲しいと思う
DECLARE @CurrentLocation geography;
SET @CurrentLocation = geography::Point(12.822222, 80.222222, 4326)
SELECT * , Round (GeoLocation.STDistance(@CurrentLocation ),0) AS Distance FROM [Landmark]
WHERE GeoLocation.STDistance(@CurrentLocation )<= 2000 -- 2 Km
素晴らしいチュートリアル
http://www.sql-server-helper.com/sql-server-2008/convert-latitude-longitude-to-geography-point.aspx