description.md 1.9 KB
Newer Older
M
text  
Mars Liu 已提交
1 2 3 4
# 文本字段

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

fix bug  
张志晨 已提交
5
```sql
M
text  
Mars Liu 已提交
6 7 8 9 10
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
## 答案

fix bug  
张志晨 已提交
27
```sql
M
text  
Mars Liu 已提交
28 29 30 31 32
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
    description varchar(2000),
    ts timestamp default now()
);
```

## 选项

### A

fix bug  
张志晨 已提交
43
```sql
M
text  
Mars Liu 已提交
44 45 46 47 48
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
    description char(2000),
    ts timestamp default now()
);
```

### B

fix bug  
张志晨 已提交
57
```sql
M
text  
Mars Liu 已提交
58 59 60 61 62
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
    description varchar(256) default '',
    ts timestamp default now()
);
```

### C

fix bug  
张志晨 已提交
71
```sql
M
text  
Mars Liu 已提交
72 73 74 75 76
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
    description text(2000),
    ts timestamp default now()
);
```

### D

fix bug  
张志晨 已提交
85
```sql
M
text  
Mars Liu 已提交
86 87 88 89 90
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()
);
```