numbers.md 891 字节
Newer Older
M
number  
Mars Liu 已提交
1 2 3 4
# 数值的隐式类型转换

Joe 需要使用下列表做一项数值计算

M
Mars Liu 已提交
5 6
<hr/>

M
Mars Liu 已提交
7
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)
F
feilong 已提交
8

M
Mars Liu 已提交
9 10
* `show databases` 列出所有数据库
* `show tables` 列出所有表
M
Mars Liu 已提交
11

M
number  
Mars Liu 已提交
12
```mysql
M
typo  
Mars Liu 已提交
13
create table points(
M
number  
Mars Liu 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27
    id int primary key auto_increment,
    x int,
    y int
);
```

计算查询为:

```mysql
select id, (x^2 + y^2)/2 as result from points;
```

得到的结果集中,result 列的类型应该是:

M
Mars Liu 已提交
28 29
<hr/>

M
Mars Liu 已提交
30
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill)
F
feilong 已提交
31

M
Mars Liu 已提交
32 33
* `show databases` 列出所有数据库
* `show tables` 列出所有表
M
Mars Liu 已提交
34

M
number  
Mars Liu 已提交
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
## 答案

decimal

## 选项

### A

float

### B

double

### C

int

### D

long

### E

M
typo  
Mars Liu 已提交
59
byte