Created
October 28, 2015 00:32
-
-
Save nsabharwal/bf1ddc912a7202a590e9 to your computer and use it in GitHub Desktop.
This file contains 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
drop table if exists crime; | |
create table crime ( | |
caseid varchar, | |
Date varchar, | |
block varchar, | |
description varchar, | |
sdesc varchar, | |
ldesc varchar, | |
arrest char(2), | |
domestic char(2), | |
lat float, | |
long float | |
constraint PK PRIMARY KEY (caseid) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment