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.
我将一个访问数据库导入mysql。mysql 数据库用于使用 asp.net mvc 3 构建我的应用程序。由于我的访问值已更改,我正在寻找一种更新 mysql 数据库的方法。
我的表有超过 70 000 条记录。我已将我的访问数据库导入 mysql 中的另一个表。现在我如何将这些值从一个 mysql 表更新到另一个表,如果有新记录也添加它们。
试试这个格式::
update table1 inner join table2 on (//join condition) set table1.column1=table2.column2 where // the clause