在mysql中创建innodb数据库
我尝试创建一个 innodb 数据库类型。我尝试了这个查询,但它没有执行。
创建数据库“mydd”引擎 = InnoDB
我检查了配置,它说 innodb 已启用。我也在网上搜索过,但最终只找到了
创建了 innodb 表。
我将数据库设置为 innodb,然后将所有表设置为 innodb 在此下将采用相同的类型,无需再次指定。而且我的默认引擎不应该是 innodb。
任何人都可以帮助我吗?谢谢。
I tried to create a database type of innodb.I tried this query but its not exectuted.
CREATE DATABASE "mydd" ENGINE = InnoDB
I checked the configuration and it says innodb enabled. I also searched in web but only ended up
with creatin innodb tables.
I set the database as innodb then all the table
under this will takes the same type and no need to specify again.Also my defauld engine should not be innodb.
Can anyone help me out? Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您不能在创建数据库时指定引擎。
因为一个数据库可以有多个引擎类型表,
请检查创建数据库命令 http://dev.mysql.com/doc/refman/5.5/en/create-database.html
I don't think you can specify Engine while creating database.
because one database can have multiple engine type tables in it
Check create database command at http://dev.mysql.com/doc/refman/5.5/en/create-database.html
检查 CREATE DATABASE 的语法: http://dev.mysql.com/doc/refman /5.0/en/create-database.html
您可以在启动 mysql 时或在会话期间更改默认存储引擎。请参阅http://dev.mysql.com/doc/refman/5.0/en/storage -engines.html
Check the syntax for CREATE DATABASE: http://dev.mysql.com/doc/refman/5.0/en/create-database.html
You can change the default storage engine on starting up mysql, or during your session. See http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html
嗨,通常程序员使用 innodb 作为表,不知道是否可以将其设置为数据库
参考
数据库创建
Hi normally programmers use innodb for table don't know if you can set it for database
refer
Database creation