MySQL 中的归档父/子表层次结构
如果我在 MySQL 中有一个通过外键关联的父表和子表,是否可以使用 SQL 语句以原子方式将某些行从父表和相关行从子表移动到存档表(例如 Parent_Archive 和 Child_Archive)?
If I have a Parent and Child table in MySQL related by a foreign key, is it possible using a SQL statement to move certain rows from Parent and the related rows from Child into archive tables (e.g. Parent_Archive and Child_Archive) in an atomic manner?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用事务——它们的全部目的是使一系列 SQL 语句原子化。
例如(不是很优化 - 可以使用临时表进行改进):
Use transactions - their whole purpose is to make the series of SQL statements atomic.
For example (NOT very optimized - can be improved with temp table):