多个表之间的复制
我在表 A 中有一些记录,其中包含字段,即名字、姓氏、学校、出生日期
我有另一个表 B,其中包含一些记录和字段,即名字、姓氏、地址、俱乐部,
我想使用表 B 中的名字和姓氏检查该记录是否存在于表 A 中,如果不存在,则应将该记录追加到表 A 中。 如果你能帮我解决这个问题,我会很高兴
I have some records in tables A with fields i.e firstname surname, lastname, school, dob
I have another table B with some records and fields i.e firstname, surname, address, club,
I'd like to use the firstname and surname in table B to check if the record exist in table A if it doesnt it should append the record to table A.
I would be glad if you can help me with this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个 SQL 应该做到这一点。基本上,从 table_b 插入 table_a 中不存在名字和姓氏的记录。
This SQL should do this. Basically, insert from table_b, records with firstname and lastname not existing in table_a.
尝试这个查询 -
Try this query -