在 SQLite 中,如何使用表 B 中的列的值更新表 A 中的列?

发布于 2024-11-05 02:25:12 字数 365 浏览 0 评论 0原文

需要帮助,因为我运气不好。

表A

id   groupid   
 1     100   
 2     101   
 3     102  

表B

groupid   newid  
 100        100  
 101        100   
 102        100 

更新表A,使表A 变为

id   groupid   
 1     100   
 2     100   
 3     100  

使用TableB 获取newid。

提前致谢

Need help with this as I m having no luck.

Table A

id   groupid   
 1     100   
 2     101   
 3     102  

Table B

groupid   newid  
 100        100  
 101        100   
 102        100 

Update Table A so that Table A becomes

id   groupid   
 1     100   
 2     100   
 3     100  

which uses TableB to get the newid.

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温柔戏命师 2024-11-12 02:25:12

sqlite 不支持更新中的联接,但您可以使用子查询。尝试这样的事情:

update a
set groupid = coalesce(
 (select newid from b where groupid = a.groupid limit 1),
 groupid
);

sqlite doesn't support joins in updates, but you could use a subquery. try something like this:

update a
set groupid = coalesce(
 (select newid from b where groupid = a.groupid limit 1),
 groupid
);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文