coldfusion查询表,用于查找半径范围内的位置

时间:2016-04-23 12:44:29

标签: sql latitude-longitude coldfusion-10 geography dbms-output

我有以下sql代码在sql中工作但是我希望能够通过cfml模板执行查询传递给它的半径和当前位置的long / lat需要首先转换为地理类型

DECLARE @point geography = geography :: Point([ - 27.5819482,153.3136523],4326);

SELECT *,@ point.STDistance(a.placeOfInterest)作为距离 FROM placesOfInterest_GeoFences a WHERE @ point.STDistance(a.placeOfInterest)< = [100500]

任何人都可以指出我正确的方向,以便我的cfml模板处理必要的代码,然后输出符合查询条件的记录。每次变量

时,[]中的值都需要动态传递给模板

期待任何建议/协助

0 个答案:

没有答案