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

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

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

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

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

M
Mars Liu 已提交
12 13
## 答案

fix bug  
张志晨 已提交
14
```sql
M
Mars Liu 已提交
15 16
CREATE TABLE goods_category
(
M
Mars Liu 已提交
17
    id         INT,
M
Mars Liu 已提交
18 19 20 21 22 23 24 25 26
    category VARCHAR(30),
    remark   VARCHAR(100)
) ENGINE=INNODB;
```

## 选项

### A

fix bug  
张志晨 已提交
27
```sql
M
Mars Liu 已提交
28 29
CREATE TABLE goods_category
(
M
Mars Liu 已提交
30
    id         INT,
M
Mars Liu 已提交
31 32 33 34 35 36 37
    category VARCHAR(30),
    remark   VARCHAR(100)
) as INNODB;
```

### B

fix bug  
张志晨 已提交
38
```sql
M
Mars Liu 已提交
39 40
WITH ENGINE=INNODB CREATE TABLE goods_category
(
M
Mars Liu 已提交
41
    id         INT,
M
Mars Liu 已提交
42 43 44 45 46 47 48
    category VARCHAR(30),
    remark   VARCHAR(100)
);
```

### C

fix bug  
张志晨 已提交
49
```sql
M
Mars Liu 已提交
50 51
SAVE TABLE goods_category
(
M
Mars Liu 已提交
52
    id         INT,
M
Mars Liu 已提交
53 54 55 56 57 58 59
    category VARCHAR(30),
    remark   VARCHAR(100)
) AS INNODB;
```

### D

fix bug  
张志晨 已提交
60
```sql
M
Mars Liu 已提交
61 62
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;
```