2

我正在尝试学习如何使用新的 SqlServer 2008 托管空间类型和方法(地理)对记录进行半径搜索以进行地理空间计算。我正在关注此网页上的示例:

http://msdn.microsoft.com/en-us/magazine/dd434647.aspx

我特意尝试做这个示例:

-- or declare POINT for "downtown Seattle"
-- 1609.344 meters per mile
DECLARE @Seattle geography = 'POLYGON(....)'; SELECT c.customerid FROM
 customer c WHERE c.geog.STIntersects(@Seattle.STBuffer(10 * 1609.344));

但是,即使在运行查询之前(或者当我运行查询时 - 编译和运行时错误),我也收到以下错误消息:

An expression of non-boolean type specified in a context where a condition is expected, near ')'

我真的对此感到困惑。我没有做完全相同的查询(我将自己的数据与地理列一起使用),但它与示例几乎相同。我正在运行 Sql SErver 2008 SP2 标准版 64 位。当我键入查询时,它对 STIntersection 方法使用智能感知并显示 (other_geography geography) 示例,因此它知道该方法存在。我正确地关闭括号并用分号分隔表达式,但我无法弄清楚为什么我会收到错误。谷歌搜索没有奏效。

有什么想法吗?

赛斯

4

1 回答 1

6

STIntersects返回 0 或 1。试试这个:

WHERE c.geog.STIntersects(@Seattle.STBuffer(10 * 1609.344)) = 1
于 2011-03-23T22:38:19.360 回答