Nearby marketplace-successful record of a codoon

Source: Internet
Author: User

I once thought about recording data while reading data cyclically, but the efficiency is not as good as calling functions directly in SQL.

Create Function [DBO]. [fngetdistance] (@ latbegin real, @ lngbegin real, @ latend real, @ lngend real) returns float asbegin -- distance (meters) declare @ distance real declare @ earth_radius real set @ earth_radius = 6378137.0 -- Earth radius declare @ radlatbegin real, @ radlatend real, @ radlatdiff real, @ radlngdiff real set @ radlatbegin = @ latbegin * Pi ()/180.0 set @ radlatend = @ latend * Pi () /180.0 set @ radlatdiff = @ radlatbegin-@ radlatend set @ radlngdiff = @ lngbegin * Pi ()/180.0-@ lngend * Pi () /180.0 set @ distance = 2 * asin (SQRT (Power (sin (@ radlatdiff/2), 2) + cos (@ radlatbegin) * Cos (@ radlatend) * power (sin (@ radlngdiff/2), 2) set @ distance = @ distance * @ earth_radius return @ distanceendgo

You only need to call the SQL command to display it.

Nearby marketplace-successful record of a codoon

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.