curtime.md 597 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4 5 6 7 8 9 10
# 当前时间

Joe 需要在程序中获取当前时间,但是不包含日期部分。下列哪些函数可以提供这个功能?

1. now()
2. curtime()
3. sysdate()
4. current_time()
5. current_timestamp()

M
Mars Liu 已提交
11 12
<hr/>

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

M
Mars Liu 已提交
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 42 43 44 45 46 47 48 49
## 答案

```
2, 4
```

## 选项

### A

```
1, 2, 3, 4
```

### B

全都可以

### C

全部都错

### D

```
4, 5
```

### E

```
1, 2
```