码迷,mamicode.com
首页 > 数据库 > 详细

Sqlserver 计算两坐标距离函数

时间:2018-12-15 13:47:13      阅读:346      评论:0      收藏:0      [点我收藏+]

标签:cts   col   type   exists   nbsp   drop   cos   etl   distance   

mark

if exists (select * from dbo.sysobjects where id = object_id(NUF_ETL_GetDistance) and xtype in (NFN, NIF, NTF))
    drop function UF_ETL_GetDistance
GO

CREATE FUNCTION UF_ETL_GetDistance
( 
   @sLng    DECIMAL(12,6),
   @sLat    DECIMAL(12,6),
   @eLng    DECIMAL(12,6),
   @eLat    DECIMAL(12,6)
)
RETURNS DECIMAL(12,4)
AS
BEGIN
   DECLARE @result DECIMAL(12,4)
   SELECT @result = 6378137.0*ACOS(SIN(@sLat/180*PI())*SIN(@eLat/180*PI())+COS(@sLat/180*PI())*COS(@eLat/180*PI())*COS((@sLng-@eLng)/180*PI()))
   RETURN @result/1000
END
go

 

Sqlserver 计算两坐标距离函数

标签:cts   col   type   exists   nbsp   drop   cos   etl   distance   

原文地址:https://www.cnblogs.com/tgzhu/p/10122814.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!