-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCREATE_TABLE.txt
120 lines (119 loc) · 1.8 KB
/
CREATE_TABLE.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
CREATE TABLE sqf_2010
(
id serial,
year text,
pct text,
ser_num text,
datestop text,
timestop text,
recstat text,
inout text,
trhsloc text,
perobs text,
crimsusp text,
perstop text,
typeofid text,
explnstp text,
othpers text,
arstmade text,
arstoffn text,
sumissue text,
sumoffen text,
compyear text,
comppct text,
offunif text,
officrid text,
frisked text,
searched text,
contrabn text,
adtlrept text,
pistol text,
riflshot text,
asltweap text,
knifcuti text,
machgun text,
othrweap text,
pf_hands text,
pf_wall text,
pf_grnd text,
pf_drwep text,
pf_ptwep text,
pf_baton text,
pf_hcuff text,
pf_pepsp text,
pf_other text,
radio text,
ac_rept text,
ac_inves text,
rf_vcrim text,
rf_othsw text,
ac_proxm text,
rf_attir text,
cs_objcs text,
cs_descr text,
cs_casng text,
cs_lkout text,
rf_vcact text,
cs_cloth text,
cs_drgtr text,
ac_evasv text,
ac_assoc text,
cs_furtv text,
rf_rfcmp text,
ac_cgdir text,
rf_verbl text,
cs_vcrim text,
cs_bulge text,
cs_other text,
ac_incid text,
ac_time text,
rf_knowl text,
ac_stsnd text,
ac_other text,
sb_hdobj text,
sb_outln text,
sb_admis text,
sb_other text,
repcmd text,
revcmd text,
rf_furt text,
rf_bulg text,
offverb text,
offshld text,
sex text,
race text,
dob text,
age text,
ht_feet text,
ht_inch text,
weight text,
haircolr text,
eyecolor text,
build text,
othfeatr text,
addrtyp text,
rescode text,
premtype text,
premname text,
addrnum text,
stname text,
stinter text,
crossst text,
aptnum text,
city text,
state text,
zip text,
addrpct text,
sector text,
beat text,
post text,
xcoord text,
ycoord text,
dettypcm text,
linecm text,
detailcm text
)
WITH (
OIDS = FALSE
)
;