Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 SQL Server Management Studio 中创建了一个新表,其中包括一个 Geography 列。现在,我正在尝试使用 SSMS UI 在此列中输入数据,但我找不到正确的方法。
那么,如何做到这一点呢?
我不认为 SSMS 本身就支持使用漂亮的界面(例如地图)来执行此操作。也许有一些附加组件可以实现这一点,或者可能有一些 3rd 方应用程序。
如果您对在 SQL 中执行此操作感到满意,请尝试以下操作:
UPDATE tableName SET geographyColumn = geography::Point(47.65100, -122.34900, 4326)
源自这里。
这里还有另外 4 种方法可以做到这一点。
如果编辑表格单元格,只需输入
POINT (2.434548 48.858319 4326)
I'm an amateur so bear with me, but I've hit the end of my research with no solution for this.
This code complies fine but when I debug, it's apparent that the procedure