我正在尝试使用从另一个表中获取的值更新sqlite表,但条件是在键字段中匹配值,但无法弄清楚如何执行此操作。
在postgres中,我可以使用“相关查询”,如下所示
drop table if exists zzzz_tab_1;
drop table if exists zzzz_tab_2;
drop table if exists zzzz_tab_3;
create table zzzz_tab_1 (nr int , x_names varchar(20));
create table zzzz_tab_2 (nr int , x_age int);
create table zzzz_tab_3 (nr int , x_names varchar(20), x_age int);
INSERT INTO zzzz_tab_1 (nr, x_names) VALUES (1, 'AB');
INSERT INTO zzzz_tab_1 (nr, x_names) VALUES (2, 'BA');
INSERT INTO zzzz_tab_1 (nr, x_names) VALUES (3, 'CD');
INSERT INTO zzzz_tab_2 (nr, x_age) VALUES (1, 10);
INSERT INTO zzzz_tab_2 (nr, x_age) VALUES (3, 20);
-- add values
-- add nr from zzzz_tab_1
insert into zzzz_tab_3 (nr) select nr from zzzz_tab_1;
--adding names from zzzz_tab_1
update zzzz_tab_3
set
x_names = t1.x_names
from (select nr, x_names from zzzz_tab_1) as t1
where zzzz_tab_3.nr = t1.nr;
--adding age from zzzz_tab_2
update zzzz_tab_3
set
x_age = t1.x_age
from (select nr, x_age from zzzz_tab_2) as t1
where zzzz_tab_3.nr = t1.nr;
select * from zzzz_tab_3;
但这似乎不适用于sqlite。 我根据回复here尝试了以下代码,但它也不起作用。
with tx1
as
(select nr, x_names from zzzz_tab_1)
replace into
zzzz_tab_3
select
zzzz_tab_3.nr, zzzz_tab_3.x_names
from zzzz_tab_3
inner join tx1 on tx1.nr = zzzz_tab_3.nr
这个操作在sqlite中是否可行?
- 澄清 -
基本上我有两个表zzzz_tab_1和zzzz_tab_3
zzzz_tab_1
nr x_names
1 AB
2 BA
3 CD
zzzz_tab_3
nr x_names
1 null
2 null
3 null
我想将 zzzz_tab_1 中的数据添加到 zzzz_tab_3 基于该领域的价值 结果(zzzz_tab_3)应为
zzzz_tab_3
nr x_names
1 AB
2 BA
3 CD
P.S:可以用连接创建一个新表,但我的表很大(30 Mio记录)
答案 0 :(得分:0)
如果其他人感兴趣,一位同事提出了这种方法(并且有效)。
update zzzz_tab_3
set
x_names = (select x_names from zzzz_tab_1 where zzzz_tab_3.nr = zzzz_tab_1.nr);
update zzzz_tab_3
set
x_age = (select x_age from zzzz_tab_2 where zzzz_tab_3.nr =
zzzz_tab_2.nr);
-- verify
select * from zzzz_tab_3;