繁体   English   中英

SQL 从 2 个表插入数据

[英]SQL INSERT data from 2 tables

我有 2 个表, postcodelatlngbranch

postcodelatlng

邮政编码 纬度 液化天然气
AB10 1XG 57.1441650 -2.1148480
AB10 6RN 57.1378800 -2.1214870
AB10 7JB 57.1242740 -2.1271900
AB10 5QN 57.1427010 -2.0932950
AB10 6UL 57.1375470 -2.1122330

branch

分支 邮政编码
1个 ZE2 9TL
4个 BB1 7DJ
9 YO8 9DW

我正在尝试为branch中的每个邮政编码创建一个新表,它列出 postcodelatlng 中的每个postcodelatlng

New table

从_lat 来自_lng 到_lat to_lng
ZE2 9TL AB10 1XG 60.4481370 -1.1943700 57.1441650 2.1148480
ZE2 9TL AB10 6RN 60.4481370 -1.1943700 57.1378800 -2.1214870
ZE2 9TL AB10 7JB 60.4481370 -1.1943700 57.1242740 -2.1271900
ZE2 9TL AB10 5QN 60.4481370 -1.1943700 57.1427010 -2.0932950
ZE2 9TL AB10 6UL 60.4481370 -1.1943700 57.1375470 -2.1122330
BB1 7DJ AB10 1XG 53.7490640 -2.4843190 57.1441650 2.1148480
BB1 7DJ AB10 6RN 53.7490640 -2.4843190 57.1378800 -2.1214870
BB1 7DJ AB10 7JB 53.7490640 -2.4843190 57.1242740 -2.1271900
BB1 7DJ AB10 5QN 53.7490640 -2.4843190 57.1427010 -2.0932950
BB1 7DJ AB10 6UL 53.7490640 -2.4843190 57.1375470 -2.1122330
YO8 9DW AB10 1XG 53.7743390 -1.0714240 57.1441650 2.1148480
YO8 9DW AB10 6RN 53.7743390 -1.0714240 57.1378800 -2.1214870
YO8 9DW AB10 7JB 53.7743390 -1.0714240 57.1242740 -2.1271900
YO8 9DW AB10 5QN 53.7743390 -1.0714240 57.1427010 -2.0932950
YO8 9DW AB10 6UL 53.7743390 -1.0714240 57.1375470 -2.1122330

我已经尝试在 Python 中使用 Pandas 和 SQLAlchemy 执行此操作,但我无法理解这一点,所以我认为在 SQL 中执行此操作可能更容易,但我也坚持这样做!

lat/lng 数据仅保存在postcodelatlng中,但这可以手动添加到branch表(那里只有 42 个唯一的邮政编码(一些分支共享一个邮政编码))

我在branch有 120 条记录,在postcodelatlng有 42 个独特的邮政编码和 1778786 条记录。

通过无条件连接,到达了所需的表,但我不知道 from_lat 和 from_lng 的值

insert into newtable
select b.postcode,p.postcode,"from_lat = ?","from_lng = ?",p.lat,p.lng
from branch b join postcodelatlng p on 1 = 1

或交叉连接

insert into newtable
select b.postcode,p.postcode,"from_lat = ?","from_lng = ?",p.lat,p.lng
from branch b cross join postcodelatlng p

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM