一、定义和用法 POW() 函数返回一个数字的值,到另一个数字的幂,此功能相当于POWER()功能语法 pow(x,y) 二、场景(1)两点场景 select round(min(sqrt(pow(p1.x-p2.x,2)+pow(p1.y-p2.y,2))),2) as shortest from point_2d p1,point_2d p2 where (p2.x-p1.x)*(p2.x-p1.x) + (p2.y-p1.y)*(p2.y-p1.y)>0