datetime.md 1.5 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
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)

M
Mars Liu 已提交
19 20 21 22 23 24 25 26
## 答案

```mysql
create table orders (
    id int primary key auto_increment,
    item_id int,
    amount int,
    unit_price decimal(12, 4),
M
Mars Liu 已提交
27
    price decimal(12, 4),
M
Mars Liu 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41
    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 已提交
42
    price decimal(12, 4),
M
Mars Liu 已提交
43 44 45 46 47 48 49 50 51 52 53 54
    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 已提交
55
    price decimal(12, 4),
M
Mars Liu 已提交
56 57 58 59 60 61 62 63 64 65 66 67
    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 已提交
68
    price decimal(12, 4),
M
Mars Liu 已提交
69 70 71 72 73 74 75 76 77 78 79 80
    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 已提交
81
    price decimal(12, 4),
M
Mars Liu 已提交
82 83 84
    ts datetime default now()
);
```