mysqldump --skip-comments --skip-extended-insert -u root -p database1>file1.sql
mysqldump --skip-comments --skip-extended-insert -u root -p database2>file2.sql
diff file1.sql file2.sql
其实还有一些比较工具,推荐一个
mysql-comparison-tools
思路:可以用union all 查出所有id group by 后 having 统计为1的即为不同数据,为2的则为相同数据
https://blog.csdn.net/luyaran/article/details/80928666
假设是学生退出登录时在t1表删除数据 假设id各为两个表的主键 select * from t2 where id not in (select id from t1) 结果集是t2表中id不在t1表的数据欢迎分享,转载请注明来源:内存溢出
评论列表(0条)