Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个具有相似数据的 MySQL 数据库。不同之处在于,一个有一个包含大约 2000 个条目的电子邮件列,另一个有一个没有条目的电子邮件列。是否可以进行某种批量操作将 2000 个电子邮件地址从数据库 1 复制到数据库 2?
我正在寻找一种使用 PHP 执行此操作的方法,或者更好的是,一种通过 phpMyAdmin 运行的包罗万象的查询。
像这样的东西:
UPDATE db1.tbl a SET a.email = b.email JOIN db2.tbl b ON b.id = a.id