SQL Server 地理点
我最近一直在研究 SQL Server 空间数据类型,并决定尝试将我的长纬度点存储在地理字段中。
但是我不知道如何将数据插入到字段中,我尝试使用“POINT(double, double), 0”之类的东西和类似的奇怪的东西,但没有成功。
我也很好奇地理函数中指定的 ID 参数的目的是什么。
谢谢, 亚历克斯.
I have recently been researching the SQL Server spatial data types and have decided to try and store my long, lat points in a geography field.
However I cannot figure out how to insert the data into the field, I have tried using stuff like "POINT(double, double), 0" and weird stuff like that, but no success.
Also im curious as to what the purpose of the ID argument specified in the geography functions.
Thanks,
Alex.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你看过MSDN上的例子吗?
来自
地理 (Transact-SQL)
:并来自
点
:Have you looked at the examples from MSDN?
From
geography (Transact-SQL)
:And from
Point
:注意:与上面的 POINT 语法相比,Lat 和 Long 是相反的。
Notice: Lat and Long are the other way around, compared to the POINT syntax above.