gpt4 book ai didi

sql - 如何测试 SQL Server Geography 列值是否为 POINT(0 0)?

转载 作者:行者123 更新时间:2023-12-01 09:55:12 25 4
gpt4 key购买 nike

以下代码有效,但速度非常慢:

select top 100 FooId
from dbo.Foos
where latitudelongitude.ToString() = 'POINT(0,0)'
order by FooId desc

是否有更好的方法来确定 GEOGRAPHY值的纬度/经度为 0,0 ?

最佳答案

翻转哟测试,哟。 ;)

declare @g geography = geography::STPointFromText('POINT(0 0)', 4326);

select *
from dbo.Foos
where latitudelongitude.STEquals(@g) = 1

换句话说,您最初编写的查询不是 SARGable。我写的那个是。

关于sql - 如何测试 SQL Server Geography 列值是否为 POINT(0 0)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29642719/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com