关于MS SQL,我是一个完全的新手,并且在搜索时已在线找到了此代码。似乎可以完全满足我的要求,即根据“纬度”和“纬度”值进行半径搜索。
但是,我不断得到:关键字“ CREATE”附近的语法不正确。,这是代码的第一行。我的数据库是2008 MS SQL
这是代码:
CREATE FUNCTION CalculateDistance
(@Longitude1 Decimal(8,5),
@Latitude1 Decimal(8,5),
@Longitude2 Decimal(8,5),
@Latitude2 Decimal(8,5))
Returns Float
AS BEGIN
Declare @Temp Float
Set @Temp = sin(@Latitude1/57.2957795130823) * sin(@Latitude2/57.2957795130823) + cos(@Latitude1/57.2957795130823) * cos(@Latitude2/57.2957795130823) * cos(@Longitude2/57.2957795130823 - @Longitude1/57.2957795130823)
if @Temp > 1
Set @Temp = 1
Else If @Temp < -1
Set @Temp = -1
Return (3958.75586574 * acos(@Temp) )
End
-- FUNCTION
CREATE FUNCTION LatitudePlusDistance(@StartLatitude Float, @Distance Float) Returns Float
AS BEGIN
Return (Select @StartLatitude + Sqrt(@Distance * @Distance / 4766.8999155991))
End
-- FUNCTION
CREATE FUNCTION LongitudePlusDistance
(@StartLongitude Float,
@StartLatitude Float,
@Distance Float)
Returns Float
AS BEGIN
Return (Select @StartLongitude + Sqrt(@Distance * @Distance / (4784.39411916406 * Cos(2 * @StartLatitude / 114.591559026165) * Cos(2 * @StartLatitude / 114.591559026165))))
End
-- ACTUAL QUERY
-- Declare some variables that we will need.
Declare @Longitude Decimal(8,5),
@Latitude Decimal(8,5),
@MinLongitude Decimal(8,5),
@MaxLongitude Decimal(8,5),
@MinLatitude Decimal(8,5),
@MaxLatitude Decimal(8,5)
-- Get the lat/long for the given id
Select @Longitude = Longitude,
@Latitude = Latitude
From qccities
Where id = '21'
-- Calculate the Max Lat/Long
Select @MaxLongitude = LongitudePlusDistance(@Longitude, @Latitude, 20),
@MaxLatitude = LatitudePlusDistance(@Latitude, 20)
-- Calculate the min lat/long
Select @MinLatitude = 2 * @Latitude - @MaxLatitude,
@MinLongitude = 2 * @Longitude - @MaxLongitude
-- The query to return all ids within a certain distance
Select id
From qccities
Where Longitude Between @MinLongitude And @MaxLongitude
And Latitude Between @MinLatitude And @MaxLatitude
And CalculateDistance(@Longitude, @Latitude, Longitude, Latitude) <= 2
Run Code Online (Sandbox Code Playgroud)
知道发生了什么吗?
谢谢!!!
编辑:非常感谢bluefeet和Aaron Bertrand为我指明了正确的方向!
您还应该以 a 或分号结束每个 create 语句GO:
另外,应该将架构添加到函数中。例如,以下使用dbo.架构:
CREATE FUNCTION dbo.CalculateDistance
(@Longitude1 Decimal(8,5),
@Latitude1 Decimal(8,5),
@Longitude2 Decimal(8,5),
@Latitude2 Decimal(8,5))
Returns Float
AS BEGIN
Declare @Temp Float
Set @Temp = sin(@Latitude1/57.2957795130823) * sin(@Latitude2/57.2957795130823) + cos(@Latitude1/57.2957795130823) * cos(@Latitude2/57.2957795130823) * cos(@Longitude2/57.2957795130823 - @Longitude1/57.2957795130823)
if @Temp > 1
Set @Temp = 1
Else If @Temp < -1
Set @Temp = -1
Return (3958.75586574 * acos(@Temp) )
End
GO
Run Code Online (Sandbox Code Playgroud)
请参阅SQL Fiddle 以及正在创建的所有函数的演示。