gpt4 book ai didi

mysql - 数据库设计中的引擎

转载 作者:行者123 更新时间:2023-11-29 06:05:53 25 4
gpt4 key购买 nike

我正在尝试创建一个 innodb 数据库:

mysql> CREATE DATABASE imdb () ENGINE=InnoDB;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near '()
ENGINE=InnoDB' at line 1

上面的命令有什么问题,来自http://dev.mysql.com/doc/refman/5.5/en/myisam-storage-engine.html

最佳答案

只能为表指定数据库引擎,不能为数据库指定

http://dev.mysql.com/doc/refman/5.5/en/create-database.html

因此,当您创建数据库时 - 您无需指定它,而当您创建表时 - 您则需要指定它。

http://dev.mysql.com/doc/refman/5.5/en/create-table.html

PS:在您提供的链接的页面上

CREATE TABLE t (i INT) ENGINE = MYISAM;
^----- table, not database

关于mysql - 数据库设计中的引擎,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11531642/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com