create_table.md 1.2 KB
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 创建表

Joe 想要在 goods 数据库创建一个 goods_category 表,管理商品的类别,那么正确的建表语句应该是:

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)
M
Mars Liu 已提交
8 9
* `show databases` 列出所有数据库
* `show tables` 列出所有表
M
Mars Liu 已提交
10

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

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

## 选项

### A

```mysql
MAKE TABLE goods_category
(
M
Mars Liu 已提交
29
    id         INT PRIMARY KEY ,
M
Mars Liu 已提交
30 31 32 33 34 35 36 37 38 39
    category VARCHAR(30),
    remark   VARCHAR(100)
);
```

### B

```mysql
DROP TABLE goods_category
(
M
Mars Liu 已提交
40
    id         INT PRIMARY KEY,
M
Mars Liu 已提交
41 42 43 44 45 46 47 48 49 50
    category VARCHAR(30),
    remark   VARCHAR(100)
);
```

### C

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

### D

```mysql
ADD TABLE goods_category
(
M
Mars Liu 已提交
62
    id         INT PRIMARY KEY,
M
Mars Liu 已提交
63 64 65 66 67 68 69 70 71 72
    category VARCHAR(30),
    remark   VARCHAR(100)
);
```

### E

```mysql
PUT TABLE goods_category
(
M
Mars Liu 已提交
73
    id         INT PRIMARY KEY,
M
Mars Liu 已提交
74 75 76 77
    category VARCHAR(30),
    remark   VARCHAR(100)
);
```