geo.md 878 字节
Newer Older
M
Mars Liu 已提交
1 2 3 4
# 数值计算

Points 表结构如下:

fix bug  
张志晨 已提交
5
```sql
M
Mars Liu 已提交
6 7 8 9 10 11 12 13 14
create table points(
    id int primary key auto_increment,
    x float,
    y float
)
```

现在 Joe 想要求写一个查询,得到每个点的id和模。即 √(x^2+y^2) 。这个查询应该是:

M
Mars Liu 已提交
15 16
<hr/>

F
feilong 已提交
17
点击进入[MySQL实战练习环境](https://mydev.csdn.net/product/pod/new?image=cimg-centos7-skilltreemysql&connect=auto&create=auto&utm_source=skill){target="_blank"}。
F
feilong 已提交
18

F
feilong 已提交
19 20
* `show databases;` 列出所有数据库
* `show tables;` 列出所有表
M
Mars Liu 已提交
21

M
Mars Liu 已提交
22 23
## 答案

fix bug  
张志晨 已提交
24
```sql
M
Mars Liu 已提交
25 26 27 28 29 30 31
select id, sqrt(x^2 + y^2) from points;
```

## 选项

### A

fix bug  
张志晨 已提交
32
```sql
M
Mars Liu 已提交
33 34 35 36 37
select sqrt(vx+vy) from (select x^2 as vx, y^2 as vy from points) as t;
```

### B

fix bug  
张志晨 已提交
38
```sql
M
Mars Liu 已提交
39 40 41 42 43
select sqrt(vx + vy) from points where x^2 as vx, y^2 as vy ;
```

### C

fix bug  
张志晨 已提交
44
```sql
M
Mars Liu 已提交
45 46 47 48 49
select id + sqrt(x^2 + y^2) from points;
```

### D

fix bug  
张志晨 已提交
50
```sql
M
Mars Liu 已提交
51 52
select id || sqrt(x^2 + y^2) from points;
```