SQLite inner join - update using values from another table(SQLite 内连接 - 使用另一个表中的值更新)
问题描述
这很容易,已经被问过多次,但我无法让它工作.我认为应该工作的 SQL 查询是:
This is quite easy and has been asked multiple times but I can't get it to work. The SQL query I think should work is:
UPDATE table2
SET dst.a = dst.a + src.a,
dst.b = dst.b + src.b,
dst.c = dst.c + src.c,
dst.d = dst.d + src.d,
dst.e = dst.e + src.e
FROM table2 AS dst
INNER JOIN table1 AS src
ON dst.f = src.f
推荐答案
使用更新语句是不可能的,因为在更新语句中的 sqlite 联接不受支持.查看文档:更新声明
Using the update statement it is not possible because in sqlite joins in an update statement are not supported. See docs: update statement
如果您只想将单个列更新为静态值,则可以在更新语句中正确使用子查询.请参阅此示例:如何进行更新在 SQLite 上连接表时?
If you only wanted to update a single column to a static value, you could use a subquery in the update statement correctly. See this example: How do I make an UPDATE while joining tables on SQLite?
现在在您的示例中,假设列 f"上有一个唯一键 - 我提出的解决方法/解决方案是使用替换语句:
Now in your example, making an assumption that there is a unique key on "column f" - a workaround/solution I have come up with is using the replace statement:
replace into table2
(a, b, c, d, e, f, g)
select src.a, src.b, src.c, src.d, src.e, dest.f, dest.g
from table1 src
inner join table2 dest on src.f = dest.f
我还在 table2 的column g"中添加了一个额外的列,以显示您如何使用此方法仅更新"某些列.
I also added an extra column to table2 "column g" to show how you'd "update" only some of the columns with this method.
另一件需要注意的事情是,如果您使用PRAGMA foreign_keys = ON;"由于该行已被有效删除和插入,因此可能会出现问题.
One other thing to be cautious about is if you use "PRAGMA foreign_keys = ON;" it's possible to have issues with this as the row is effectively deleted and inserted.
这篇关于SQLite 内连接 - 使用另一个表中的值更新的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SQLite 内连接 - 使用另一个表中的值更新
基础教程推荐
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01