dt_format.md 769 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4 5 6 7 8
# 格式化

关于日期时间数据的格式化,以下说法正确的是:

1. `DATE_FORMAT(date,format)`函数按照指定的格式format来格式化日期date。
2. `TIME_FORMAT(time,format)`函数按照指定的格式format来格式化日期date。
3. `GET_FORMAT(date_type,format_type)`函数返回日期字符串的显示格式,其中date_type表示日期类型,format_type表示格式化类型。

M
Mars Liu 已提交
9 10
<hr/>

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

M
Mars Liu 已提交
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
## 答案

全部都对

## 选项

### A

```
1, 2
```

### B

```
2, 3
```

### C

全都不对

### D

```
1, 3
```