gpt4 book ai didi

SQLite:如何更新另一个的值?

转载 作者:行者123 更新时间:2023-12-03 05:14:49 24 4
gpt4 key购买 nike

如何更新列值为 2010 年的另一个表中的值?

这是返回我想要的结果的select SQL语句

SELECT Devices.Name,TempKaspersky.Lisence
FROM TempKaspersky
INNER JOIN devices
On lower(TempKaspersky.MachineName)=devices.name
Where TempKaspersky.Lisence=2010

现在我想用 2010 更新 Devices.lisence 列?我怎样才能在 SQLite 中实现这一点?

最佳答案

这就是你想要做的:

UPDATE Devices 
SET Devices.lisence = 2010
WHERE Devices.Name IN
(SELECT lower(MachineName) FROM TempKaspersky WHERE Lisence=2010)

关于SQLite:如何更新另一个的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19384475/

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