如何使用WKT作为函数的输入?

时间:2012-05-30 09:10:01

标签: sql-server-2008 spatial

我在t-sql语句中有以下where子句:

where a.CELL_GEOM.STIntersects(
STGeomFromText('POLYGON((-25.43623984375 44.257784519021, 21.62918984375 44.257784519021, 21.62918984375 60.752403080295, -25.43623984375 60.752403080295, -25.43623984375 44.257784519021))', 4326)) = 'true'

该行报告错误:

'STGeomFromText' is not a recognized built-in function name.

如何使用此功能中显示的众所周知的文本值?我只是使用STGeomFromText的错误语法,因为这是我见过的唯一例子。

1 个答案:

答案 0 :(得分:5)

尝试使用文档中的geometry::前缀函数名称?

E.g。 :geometry::STGeomFromText( ...

Link to documentation