是否可以在 mysql 中创建事务合并表?
MySQL 文档说,使用 MERGE 存储引擎的表只能联合底层 MyISAM 表,而不允许使用事务。
是否有替代方案或解决方法,以便我可以拥有一个包含 MySQL 中多个事务表的数据的表?
另外,MySQL 4...我知道,我知道,但这就是我所坚持的。
MySQL docs say that tables that use the MERGE storage engine can only union underlying MyISAM tables, which don't allow use of transactions.
Is there an alternative or workaround so that I can have a table that contains the data of several transactional tables in MySQL?
Also, MySQL 4... I know, I know, but it's what I'm stuck with.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可以使用 视图 来完成此操作。我不太确定您是否需要完整的插入、更新、删除功能,或者您是否只想从许多表中进行选择。
Perhaps you could use a view to accomplish this. I'm not too sure if you need the full insert, update, delete functionality or if you just want to select from many tables.