description.md 1.9 KB
Newer Older
M
text  
Mars Liu 已提交
1 2 3 4 5 6 7 8 9 10
# 文本字段

Joe 在设计订单表,他已经完成了下列内容:

```mysql
create table orders (
    id int primary key auto_increment,
    item_id int,
    amount int,
    unit_price decimal(12, 4),
M
Mars Liu 已提交
11
    price decimal(12, 4),
M
text  
Mars Liu 已提交
12 13 14 15 16 17
    ts timestamp default now()
);
```

现在他需要给订单表加入一个 description 字段,这个字段需要保存订单的文字说明,这些文本不会超过两千字节, Joe 应该把建表语句修改为:

M
Mars Liu 已提交
18 19
<hr/>

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

F
feilong 已提交
22 23
* `show databases;` 列出所有数据库
* `show tables;` 列出所有表
M
Mars Liu 已提交
24

M
text  
Mars Liu 已提交
25 26 27 28 29 30 31 32
## 答案

```mysql
create table orders (
    id int primary key auto_increment,
    item_id int,
    amount int,
    unit_price decimal(12, 4),
M
Mars Liu 已提交
33
    price decimal(12, 4),
M
text  
Mars Liu 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
    description varchar(2000),
    ts timestamp default now()
);
```

## 选项

### A

```mysql
create table orders (
    id int primary key auto_increment,
    item_id int,
    amount int,
    unit_price decimal(12, 4),
M
Mars Liu 已提交
49
    price decimal(12, 4),
M
text  
Mars Liu 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62
    description char(2000),
    ts timestamp default now()
);
```

### B

```mysql
create table orders (
    id int primary key auto_increment,
    item_id int,
    amount int,
    unit_price decimal(12, 4),
M
Mars Liu 已提交
63
    price decimal(12, 4),
M
text  
Mars Liu 已提交
64 65 66 67 68 69 70 71 72 73 74 75 76
    description varchar(256) default '',
    ts timestamp default now()
);
```

### C

```mysql
create table orders (
    id int primary key auto_increment,
    item_id int,
    amount int,
    unit_price decimal(12, 4),
M
Mars Liu 已提交
77
    price decimal(12, 4),
M
text  
Mars Liu 已提交
78 79 80 81 82 83 84 85 86 87 88 89 90
    description text(2000),
    ts timestamp default now()
);
```

### D

```mysql
create table orders (
    id int primary key auto_increment,
    item_id int,
    amount int,
    unit_price decimal(12, 4),
M
Mars Liu 已提交
91
    price decimal(12, 4),
M
text  
Mars Liu 已提交
92 93 94 95
    description tinytext(2000),
    ts timestamp default now()
);
```