datetime.md 1.6 KB
Newer Older
M
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
Mars Liu 已提交
12 13 14 15 16
);
```

现在,Joe 需要给这个表加入下单时间,即订单写入数据库的时间,那么他应该将这个语句修改为:

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

M
Mars Liu 已提交
19
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)
M
Mars Liu 已提交
20 21
* `show databases` 列出所有数据库
* `show tables` 列出所有表
M
Mars Liu 已提交
22

M
Mars Liu 已提交
23 24 25 26 27 28 29 30
## 答案

```mysql
create table orders (
    id int primary key auto_increment,
    item_id int,
    amount int,
    unit_price decimal(12, 4),
M
Mars Liu 已提交
31
    price decimal(12, 4),
M
Mars Liu 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45
    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 已提交
46
    price decimal(12, 4),
M
Mars Liu 已提交
47 48 49 50 51 52 53 54 55 56 57 58
    ts varchar(16) 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 已提交
59
    price decimal(12, 4),
M
Mars Liu 已提交
60 61 62 63 64 65 66 67 68 69 70 71
    ts varchar(16) format 'yyyy-mm-dd'
);
```

### C

```mysql
create table orders (
    id int primary key auto_increment,
    item_id int,
    amount int,
    unit_price decimal(12, 4),
M
Mars Liu 已提交
72
    price decimal(12, 4),
M
Mars Liu 已提交
73 74 75 76 77 78 79 80 81 82 83 84
    ts date 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 已提交
85
    price decimal(12, 4),
M
Mars Liu 已提交
86 87 88
    ts datetime default now()
);
```