point 类型的字段p的存储数据如:p = (1,2);
那么如何取出point类型p的x或者y呢?
正确的使用方式如下:
select (point(1,2))[0] as x, (point(1,2))[1] as y
截图如图:
point 类型的字段p的存储数据如:p = (1,2);
那么如何取出point类型p的x或者y呢?
正确的使用方式如下:
select (point(1,2))[0] as x, (point(1,2))[1] as y
截图如图: