create_table.md 1.1 KB
Newer Older
M
Mars Liu 已提交
1 2
# 建表语句

M
having  
Mars Liu 已提交
3
现在Joe 需要建立一个简化的交易流水表 trade,需要一个自增主键,一个content字段保存订单详情,,
M
Mars Liu 已提交
4 5
需要有一个时间戳字段记录订单入库时间,那么哪一个语句是对的?

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

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

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

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

fix bug  
张志晨 已提交
15
```sql
M
Mars Liu 已提交
16
create table trade (
M
having  
Mars Liu 已提交
17 18
    id int primary key auto_increment,
    content varchar(8000),
M
Mars Liu 已提交
19 20 21 22 23 24 25 26
    created_at timestamp default now()
);
```

## 选项

### 主键没有设置自增,不符合题意

fix bug  
张志晨 已提交
27
```sql
M
Mars Liu 已提交
28 29
create table trade (
    id integer primary key,
M
having  
Mars Liu 已提交
30
    content varchar(8000),
M
Mars Liu 已提交
31 32 33 34 35 36
    created_at timestamp default now()
);
```

### 时间戳没有设置默认值

fix bug  
张志晨 已提交
37
```sql
M
Mars Liu 已提交
38 39
create table trade (
    id serial primary key,
M
having  
Mars Liu 已提交
40
    content varchar(8000),
M
Mars Liu 已提交
41 42 43 44 45 46
    created_at timestamp
);
```

###  没有主键,不符合题设

fix bug  
张志晨 已提交
47
```sql
M
Mars Liu 已提交
48 49
create table trade (
    id serial,
M
having  
Mars Liu 已提交
50
    content varchar(8000),
M
Mars Liu 已提交
51 52 53
    created_at timestamp default now()
);
```