合并两个表-“由于违反约束而中止”
我有两个表:表 A 和表 B。两者都有相同的列,但信息不同。我试图通过使用合并它们
INSERT INTO tableA SELECT * FROM tableB
,但随后出现一条错误消息:“由于违反约束而中止”。我正在使用 SQLite 专家个人。我的查询有问题吗?
建议?
I have two tables: tableA and tableB. Both have the same columns but with different information. I aam trying to merge them by using
INSERT INTO tableA SELECT * FROM tableB
but then I am presented with an error message: "Abort due to constraint violation". I am using SQLite expert personal. Am I doing something wrong with my query?
Suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试代替“*”来命名所有列。
Try instead of "*" to name all the colums.