在 MySQL 中使用"TYPE = InnoDB"会引发异常吗?

mysqlmysqli database

您可以使用 ENGINE = InnoDB 代替 TYPE = InnoDB,因为 TYPE 的使用在 MySQL 版本 5.1 中已过时。

我们用于示例的版本是 MySQL 版本 8.0.12。让我们检查一下 MySQL 版本。查询如下 −

mysql> select version();

以下是输出 −

+-----------+
| version() |
+-----------+
| 8.0.12    |
+-----------+
1 row in set (0.00 sec)

以下是 TYPE = InnoDB 的示例。在 MySQL 8 中可以看到错误 −

mysql> create table Product_Information
   -> (
   -> ProductId int,
   -> ProductName varchar(10),
   -> ProductDeliveryDate datetime
   -> )"TYPE = 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 '"TYPE = InnoDB"' at line 6

现在使用 ENGINE 代替 TYPE。以下是 ENGINE 的示例 −

mysql> create table Product_Information
   -> (
   -> ProductId int,  
   -> ProductName varchar(10),
   -> ProductDeliveryDate datetime
   -> )ENGINE = InnoDB;
Query OK, 0 rows affected (0.73 sec)

相关文章