Created
September 24, 2014 03:35
-
-
Save dshook/fe2593623666c1759457 to your computer and use it in GitHub Desktop.
zipcode geojson table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE dbo.zipcode_geojson | |
( | |
zip NVARCHAR (5) NOT NULL | |
, geoJSON VARCHAR (max) NOT NULL | |
, latitude DECIMAL (18, 10) NOT NULL | |
, longitude DECIMAL (18, 10) NOT NULL | |
, point GEOGRAPHY NULL | |
, CONSTRAINT PK_zipcode_geojson PRIMARY KEY (zip) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment