engine.md 1.0 KB
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 存储引擎

Joe 需要确保 goods_category 表的存储引擎为 innodb ,那么建表语句应该是:

M
Mars Liu 已提交
5 6
<hr/>

M
Mars Liu 已提交
7
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)
F
feilong 已提交
8

M
Mars Liu 已提交
9 10
* `show databases` 列出所有数据库
* `show tables` 列出所有表
M
Mars Liu 已提交
11

M
Mars Liu 已提交
12 13 14 15 16
## 答案

```mysql
CREATE TABLE goods_category
(
M
Mars Liu 已提交
17
    id         INT,
M
Mars Liu 已提交
18 19 20 21 22 23 24 25 26 27 28 29
    category VARCHAR(30),
    remark   VARCHAR(100)
) ENGINE=INNODB;
```

## 选项

### A

```mysql
CREATE TABLE goods_category
(
M
Mars Liu 已提交
30
    id         INT,
M
Mars Liu 已提交
31 32 33 34 35 36 37 38 39 40
    category VARCHAR(30),
    remark   VARCHAR(100)
) as INNODB;
```

### B

```mysql
WITH ENGINE=INNODB CREATE TABLE goods_category
(
M
Mars Liu 已提交
41
    id         INT,
M
Mars Liu 已提交
42 43 44 45 46 47 48 49 50 51
    category VARCHAR(30),
    remark   VARCHAR(100)
);
```

### C

```mysql
SAVE TABLE goods_category
(
M
Mars Liu 已提交
52
    id         INT,
M
Mars Liu 已提交
53 54 55 56 57 58 59 60 61 62
    category VARCHAR(30),
    remark   VARCHAR(100)
) AS INNODB;
```

### D

```mysql
CREATE TABLE goods_category
(
M
Mars Liu 已提交
63
    id         INT,
M
Mars Liu 已提交
64 65 66 67 68
    category VARCHAR(30),
    remark   VARCHAR(100)
) INNODB;
```