datetime.md 1.4 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 17 18 19 20 21 22 23 24
);
```

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

## 答案

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