SQL Server 2008 - 从记录中获取地理信息
我刚开始使用 SQL Server 2008 中的地理类型。我的数据库中有一个名为“位置”的表。 “位置”具有以下列和类型:
Location
--------
City nvarchar(256)
State nvarchar(256)
PostalCode nvarchar(25)
Latitude decimal(9, 6)
Longitude decimal(9, 6)
每个位置都与我的数据库中的商店记录相关。我正在尝试查找用户输入的 10 英里半径内的商店或邮政编码或城市/州。为了实现这一目标,我知道我需要依靠地理位置。此时我有:
DECLARE @startingPoint geography;
SET @startingPoint=geography::STGeomFromText('POINT(-122.34900 47.65100)', 4326);
这为我提供了硬编码文本值的起点。但是,我不知道如何将位置表中的纬度/经度转换为地理实例。
如何将数据库中的纬度/经度转换为地理实例,以便我可以继续处理我的查询?
谢谢你!
I am new to using the geography types in SQL Server 2008. I have a table in my database called "Location". "Location" has the following columns and types:
Location
--------
City nvarchar(256)
State nvarchar(256)
PostalCode nvarchar(25)
Latitude decimal(9, 6)
Longitude decimal(9, 6)
Each Location is related to a Store record in my database. I am trying to find the stores within a 10 mile radius or postal code or city/state that a user enters. To accomplish this, I know that I need to rely on geographies. At this time I have:
DECLARE @startingPoint geography;
SET @startingPoint=geography::STGeomFromText('POINT(-122.34900 47.65100)', 4326);
That gives me the starting point from a hard-coded textual value. However, I do not know how to convert a lat/long from my Location table into a geography instance.
How do I convert a lat/long in my database to a geography instance so I can continue to work on my query?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)