1. SELECT
    2. storename,
    3. sid,
    4. lng,
    5. lat,
    6. distribution,
    7. sqrt(
    8. (
    9. (
    10. ( { $lng }- lng ) * PI( ) * 12656 * cos( ( ( { $lat }+ lat ) / 2 ) * PI( ) / 180 ) / 180
    11. ) * (
    12. ( { $lng }- lng ) * PI( ) * 12656 * cos ( ( ( { $lat }+ lat ) / 2 ) * PI( ) / 180 ) / 180
    13. )
    14. ) + (
    15. ( ( { $lat }- lat ) * PI( ) * 12656 / 180 ) * ( ( { $lat }- lat ) * PI( ) * 12656 / 180 )
    16. )
    17. ) / 2 AS juli
    18. FROM
    19. ".$GLOBALS['ecs']->table('store')."
    20. HAVING
    21. ( juli <= distribution )
    22. ORDER BY
    23. juli ASC
    24. LIMIT 1