Forum Replies Created

Viewing post 1 (of 2 total)

  • Reply To: Radius Latitude Longitude

    hi hope this helps

    CREATE TABLE locations (

    id INT PRIMARY KEY IDENTITY(1,1),

    latitude FLOAT NOT NULL,

    longitude FLOAT NOT NULL

    );

    INSERT INTO locations (latitude, longitude)

    VALUES

    (45.123456, -111.123456), -- Center point

    (45.200000, -111.200000), -- Nearby

    (45.500000, -111.500000), --...

    • This reply was modified 3 hours, 37 minutes ago by naumon765.
    • This reply was modified 3 hours, 36 minutes ago by naumon765.
    Attachments:
    You must be logged in to view attached files.

Viewing post 1 (of 2 total)