创建表后是否可以更改数据库表的引擎?
我为我正在学习的 CakePHP 教程创建了一个测试数据库,并且只使用了 phpMyAdmin 引擎的默认设置 (MyISAM)。现在我已经学习该教程几天了,它表明要使用某些功能,表需要使用InnoDB。
是否可以(在 phpMyAdmin 本身或通过 SQL 文件导入)在创建表后更改其引擎选择?他们目前有数据,但每条记录只有几条,所以我不在乎是否必须清空表。如果可能的话,我只是不想完全重新创建表。
我似乎无法在 phpMyAdmin 中找到任何方法来执行此操作 - 我唯一可以找到引擎选择的地方是当我创建一个全新的表时。
编辑以在运行查询后添加屏幕截图:
I created a test database for a CakePHP tutorial I'm working through, and just used phpMyAdmin's default settings for the engine (MyISAM.) Now that I'm several days into the tutorial, it indicates that to use some of the features, the tables need to use InnoDB.
Is it possible (either in phpMyAdmin itself or via a SQL file import) to change the tables' engine choice after they've already been created? They currently have data in them, but it's only a few records each so I don't care if I have to empty the tables out. I just don't want to have to completely recreate the tables, if at all possible.
I can't seem to find any way to do this in phpMyAdmin - the only place I can find a choice of engines is when I'm creating a brand-new table.
EDITED TO ADD SCREENSHOT AFTER RUNNING QUERY:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用此查询:
其中“my_table”是您的表名称。
在 phpMyAdmin 中,导航到表并单击顶部的“SQL”选项卡。然后粘贴上述查询并单击“执行/执行”。
Use this query:
where "my_table" is your table name.
In phpMyAdmin, navigate to the table and click the "SQL" tab at the top. Then paste the above query and click "Go/Execute".