Skip to content

Latest commit

 

History

History
53 lines (31 loc) · 984 Bytes

File metadata and controls

53 lines (31 loc) · 984 Bytes

English Version

题目描述

表 point_2d 保存了所有点(多于 2 个点)的坐标 (x,y) ,这些点在平面上两两不重合。

 

写一个查询语句找到两点之间的最近距离,保留 2 位小数。

 

| x  | y  |
|----|----|
| -1 | -1 |
| 0  | 0  |
| -1 | -2 |

 

最近距离在点 (-1,-1) 和(-1,2) 之间,距离为 1.00 。所以输出应该为:

 

| shortest |
|----------|
| 1.00     |

 

注意:任意点之间的最远距离小于 10000 。

 

解法

SQL