Weather Observation Station 19

  • + 0 comments

    in Ms Sql

    with dist as ( select min(lat_n) as a,min(long_w) as b,max(lat_n) as x, max(long_w) as y from station) select cast(sqrt(power((x-a),2) + power((y-b),2)) as decimal(10,4)) from dist