Description
SELECT id,camera_name FROM ivs_video_device WHERE st_contains(view_area, POINT(3, 3));
update ivs_video_device set view_area = st_geomfromtext('MULTIPOLYGON(((2 2, 2 7, 7 7, 7 2, 2 2)))') where id = 1694855561796;
我希望可以对MULTIPOLYGON使用查询和新增函数,但是目前未找到解决方案
3条答案
按热度按时间p8ekf7hl1#
用 @raw,把 POINT(3, 3) / st_contains(view_area, POINT(3, 3)) 和 st_geomfromtext('MULTIPOLYGON(((2 2, 2 7, 7 7, 7 2, 2 2)))') 作为原始 SQL 片段
#588
xqnpmsa82#
新增支持多字段 IN,SQL 函数 作为 表达式 左侧 值 等条件
0e947d2
"st_contains_view_area_point_3_3": 1,
"@key":"st_contains_view_area_point_3_3:st_contains(view_area,POINT(3,3))"
11dmarpk3#
收到