在 SQLite 中,如何使用表 B 中的列的值更新表 A 中的列?
需要帮助,因为我运气不好。
表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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sqlite 不支持更新中的联接,但您可以使用子查询。尝试这样的事情:
sqlite doesn't support joins in updates, but you could use a subquery. try something like this: