Nicklas, thanks for the answer to my previous question....
Forgive me for my ignorance and for asking what may turn out to be rather simple questions, but databases are not my area of expertise.
The select statement that gives me the number of crashes in each percinct: SELECT P.precinct, count(C) FROM nycpp P, nyccrash C WHERE _st_contains(P.the_geom, C.crashpoint) GROUP BY P.precinct ORDER BY P.precinct;
I want to add just the count to my nycpp table the variable that will hold the count is number_of crashes....
Thanks again the assistance
Chris