gpt4 book ai didi

sql - 计算位于边界框内的点/坐标

转载 作者:行者123 更新时间:2023-11-29 14:30:11 30 4
gpt4 key购买 nike

我有 2 个表。第一个表包含以下列:Start_latitude、start_longitude、end_latitude、end_longitude、sum。 sum 列为空,需要根据第二张表进行填充。

第二张表包含3列:point_latitude, point_longitude

表1

-------------------------
|45 | 50 | 46 | 51 | null|
----|---------------------
|45 | 54 | 46 | 57 | null|
--------------------------

表2:

---------------
| 45.5 | 55.2 |
---------------
| 45.8 | 50.6 |
---------------
| 45.2 | 56 |
---------------

table1-row1 中的空值将为 1,而在 row2 中将为 2。它是位于边界框内的点数。

我可以在 python 中通过编写函数来读取数据帧之间的值。如何在 Postgresql 中完成此操作。这是我针对我的情况提出的示例问题陈述。

最佳答案

更新此版本已使用 SQL Fiddle 在 PostgreSql 9.3 上进行测试

UPDATE table1 a
SET sum = sub.point_count
FROM (SELECT a.start_lat, a.end_lat, a.start_lon, a.end_lon, COUNT(*) as point_count
FROM table1 a, table2 b
WHERE b.point_lat BETWEEN start_lat AND a.end_lat
AND b.point_lon BETWEEN a.start_lon AND a.end_lon
GROUP BY a.start_lat, a.end_lat, a.start_lon, a.end_lon) as sub
WHERE a.start_lat = sub.start_lat
AND a.end_lat = sub.end_lat
AND a.start_lon = sub.start_lon
AND a.end_lon = sub.end_lon;

原始答案

这是我的解决方案,它在 MySQL 上进行了测试,但这段代码没有任何具体内容,因此它也应该适用于 PostgreSql

UPDATE table1 a,
(SELECT a.start_lat, a.end_lat, a.start_lon, a.end_lon, COUNT(*) as count
FROM table1 a, table2 b
WHERE b.point_lat BETWEEN start_lat AND a.end_lat
AND b.point_lon BETWEEN a.start_lon AND a.end_lon
GROUP BY a.start_lat, a.end_lat, a.start_lon, a.end_lon) as sub
SET sum = count
WHERE a.start_lat = sub.start_lat
AND a.end_lat = sub.end_lat
AND a.start_lon = sub.start_lon
AND a.end_lon = sub.end_lon

请注意,如果 table1 包含 PK Id 列,则此查询会短得多。

关于sql - 计算位于边界框内的点/坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53016779/

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