标签: php mysql
我有两个表,即表1和表2。这些表之间的唯一区别是Table2包含额外的列creation_date和last_updated_date。每周,Table1记录都会更新/插入。这些变化需要反映在表2中。我们使用Table2使用max(last_updated_date)获取最新记录。因此,我们希望查询比较两个表,并根据Table1在Table2中进行必要的更改。提前谢谢。
答案 0 :(得分:1)
根据您的查询,您可以参考这些链接,希望它有所帮助。
http://www.mysqltutorial.org/compare-two-tables-to-find-unmatched-records-mysql.aspx
Compare two SQL tables and return missing ids?