Mysql点数据类型& glength 返回 null

发布于 2024-11-10 01:58:46 字数 278 浏览 2 评论 0原文

以下 glength() 语句始终返回 null。

SET @mref_point1=point(12.937060,77.671280);
SET @mref_point2=point(13.937060,73.271280);

SELECT GLENGTH(LINESTRINGFROMWKB(linestring(ASBINARY(@mref_point1),ASBINARY(@mref_point2))));

有人能指出我正确的方向吗?

The following glength() statement returns null always.

SET @mref_point1=point(12.937060,77.671280);
SET @mref_point2=point(13.937060,73.271280);

SELECT GLENGTH(LINESTRINGFROMWKB(linestring(ASBINARY(@mref_point1),ASBINARY(@mref_point2))));

Can someone point me in right direction.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

药祭#氼 2024-11-17 01:58:46

我将此作为答案发布,以便可以更轻松地阅读代码:

尝试通过以下步骤缩小问题范围:

select ASBINARY(@mref_point1)

如果不返回 null,请继续执行:

select linestring(ASBINARY(@mref_point1),ASBINARY(@mref_point2))

如果不返回 null,请继续执行:

select LINESTRINGFROMWKB(linestring(ASBINARY(@mref_point1),ASBINARY(@mref_point2)))

I post this as an answer so the code can be read more easily:

Try narrowing down the problem by these steps:

select ASBINARY(@mref_point1)

If that does not return null go ahead and do:

select linestring(ASBINARY(@mref_point1),ASBINARY(@mref_point2))

If that does not return null go ahead and do:

select LINESTRINGFROMWKB(linestring(ASBINARY(@mref_point1),ASBINARY(@mref_point2)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文